search

Home  >  Q&A  >  body text

Js对table 如何实现多选?

页面里有我的一个table,每一行前面加了一个checkbox,点击checkbox 可以选中这一行,但是必须要点中checkbox 才行。我的问题个是:  能不能点击某一行就把checkbox 给勾选上,而不需必须点击checkbox.  如果可以,怎么做?

phpcn_u251phpcn_u2512833 days ago1247

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 01:10:02

    How to implement multiple selection on table in Js? -PHP Chinese website Q&A-How to implement multiple selection on table in Js? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 阿神

    阿神2017-03-27 13:47:43

    <table>
        <tr class="tr">
            <td>
                <input type="checkbox" class="check" />
            </td>
            <td>
                内容        </td>
        </tr>
        <tr>
            <td>
                <input type="checkbox" />
            </td>
            <td>
                内容        </td>
        </tr></table>

    你可以给tr点击事件,让check被选中。

    $('.tr').click(function(){
    $(this).children('.check').checked;
    })

    大概写了下,不知道是不是你要的效果,就是获取行这个对象,点击后找到它的儿子元素check,然后给选中效果

    reply
    0
  • Cancelreply