jquery 如何选中table中的所有checkbox 求高手帮忙解答
展开全部
$("table input[type=checkbox]")
就可以了
然耐核物后你就可以执行氏世 $("table input[type=checkbox]"昌液).attr("checked",true) 全选之类的了
就可以了
然耐核物后你就可以执行氏世 $("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))
}
})
希望对你有帮助.
展开全部
<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>
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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$("table :checkbox")
追问
那我如何获取table中checkbox被选中的所对应的行数呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询