84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
页面里有我的一个table,每一行前面加了一个checkbox,点击checkbox 可以选中这一行,但是必须要点中checkbox 才行。我的问题个是: 能不能点击某一行就把checkbox 给勾选上,而不需必须点击checkbox. 如果可以,怎么做?
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.
<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,然后给选中效果
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.
你可以给tr点击事件,让check被选中。
大概写了下,不知道是不是你要的效果,就是获取行这个对象,点击后找到它的儿子元素check,然后给选中效果