jquery 如何选中table中的所有checkbox 求高手帮忙解答

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 如何选中table中的所有checkbox 求高手帮忙解答相关的知识,希望对你有一定的参考价值。

$("table input[type=checkbox]")
就可以了
然后你就可以执行 $("table input[type=checkbox]").attr("checked",true) 全选之类的了追问

那我如何获取table中checkbox被选中的所对应的行数呢

追答

$("table input:checkbox").each(function()
if($(this).attr("checked")==true)
alert($("table input:checkbox").index(this))

)
希望对你有帮助.

参考技术A <script type="text/javascript">
function selectall()
if($("input[name='selectall']").attr("checked"))
$(':checkbox').each(
function()
$(this).attr("checked", true);

);
else
$(':checkbox').each(
function()
if($(this).attr("checked"))
$(this).removeAttr("checked");


);


</script>
<body>
<div>
<table bordercolor="#CCCCCC" border="1">
<tr bgcolor="#CCCCCC">
<td><input type="checkbox" name="selectall" onclick="selectall()"/></td>
</tr>
<tr>
<td><input type="checkbox"/></td>
</tr>
<tr>
<td><input type="checkbox"/></td>
</tr>
<tr>
<td><input type="checkbox"/></td>
</tr>
<tr>
<td><input type="checkbox"/></td>
</tr>
<tr>
<td><input type="checkbox"/></td>
</tr>
<tr>
<td><input type="checkbox"/></td>
</tr>
</table>
</div>
参考技术B $("table :checkbox")追问

那我如何获取table中checkbox被选中的所对应的行数呢

以上是关于jquery 如何选中table中的所有checkbox 求高手帮忙解答的主要内容,如果未能解决你的问题,请参考以下文章

JQuery 对带有checkbox的table操作 遍历选中的行的某一列的数据

Jquery相关--工时系统

js中table的关于选中某一行的问题

如何实现Jquery复选框选中全部/取消选中带有复选框的所有功能?

jQuery怎样判断按钮是不是被选中

JQuery 获取表格对象