<table style="width: 100%;" border="0" cellspacing="0" cellpadding="0"> <tbody> <tr><th><input type="checkbox" /></th><th>编号</th></tr> <tr><th><input type="checkbox" /></th><th>编号</th></tr> <tr><th><input type="checkbox" /></th><th>编号</th></tr> </tbody> </table>
我想选择所有复选框被checked的<tr></tr>
求指教,jquery选择器没学明白,在w3c瞪眼瞪了俩小时也没瞪出来
list = $(":checkbox:checked").parent().parent();
这样就得到了所有被选中的<tr>
但是怎么得到里面的“编号”这个值呢
$("input type^='checkbox'").parent()
貌似不行! $(":checkbox [checked='checked']")
$(":checkbox:checked").parent().parent();
这句代码搞定