如何用JS判断单表checkbox的选择个数?
2个回答
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="http://cdn.bootcss.com/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<input type="checkbox" checked="checked">
<input type="checkbox">
<input type="checkbox">
<input type="checkbox" checked="checked">
<input type="checkbox" checked="checked">
<input type="checkbox" checked="checked">
<input type="checkbox">
<input type="checkbox" checked="checked">
<input type="checkbox" checked="checked">
<input type="checkbox">
<input type="checkbox" checked="checked">
<input type="checkbox">
<input type="checkbox" checked="checked">
<script>
$(function(){
var input_num = 0;
for (var i = 0; i < $("input").length; i++) {
var input_checked = $("input").eq(i).attr("checked");
if (input_checked=="checked") {
input_num++;
}
}
alert(input_num);
})
</script>
</body>
</html>
2017-06-06
展开全部
$("input[name='checkboxname']:checked").size() 直接可以得到选中的个数。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询