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))
)
希望对你有帮助.
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操作 遍历选中的行的某一列的数据