suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Js对table 如何实现多选?

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

phpcn_u251phpcn_u2512833 Tage vor1250

Antworte allen(2)Ich werde antworten

  • 数据分析师

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

    Js对table 如何实现多选?-PHP中文网问答-Js对table 如何实现多选?-PHP中文网问答

    围观一下哦,学习一下。

    Antwort
    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,然后给选中效果

    Antwort
    0
  • StornierenAntwort