recherche

Maison  >  Questions et réponses  >  le corps du texte

Js对table 如何实现多选?

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

phpcn_u251phpcn_u2512851 Il y a quelques jours1256

répondre à tous(2)je répondrai

  • 数据分析师

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

    Comment implémenter la sélection multiple dans un tableau à l'aide de Js ? -Questions et réponses sur le site Web chinois PHP -Comment implémenter la sélection multiple sur une table en Js ? - Questions et réponses sur le site Web chinois PHP

    Veuillez regarder et apprendre.

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

    répondre
    0
  • Annulerrépondre