jquery中怎样获得多选框中,被选择的个数? 30

 我来答
learneroner
高粉答主

推荐于2018-03-30 · 关注我不会让你失望
知道大有可为答主
回答量:1.1万
采纳率:91%
帮助的人:6516万
展开全部

获取 checkbox的选中个数可以直接使用如下jquery语法

$("input[type='checkbox']:checked").length;

实例演示如下

  1. 创建Html元素

    <div class="box">
    <span>点击按钮获取选中个数:</span><br>
    <div class="content">
    <input type="checkbox" name="test" >萝卜
    <input type="checkbox" name="test" >青菜
    <input type="checkbox" name="test" >小葱
    <input type="checkbox" name="test" >豆腐
    <input type="checkbox" name="test" >土豆
    </div>
    <input type="button" class="btn" value="获取被选择个数">
    </div>
  2. 设置css样式

    div.box{width:300px;height:250px;padding:10px 20px;margin:20px;border:4px dashed #ccc;}
    div.box>span{color:#999;font-style:italic;}
    div.content{width:250px;height:100px;margin:10px 0;padding:5px 20px;border:2px solid #ff6666;}
    input[type='checkbox']{margin:5px 10px;}
    input[type='button']{width:120px;height:30px;margin:10px;border:2px solid #ebbcbe;}
  3. 编写jquery代码

    $(function(){
    $("input:button").click(function() {
    alert($("input[type='checkbox']:checked").length);
    });
    })
  4. 观察效果

273142650
2012-02-02 · TA获得超过542个赞
知道小有建树答主
回答量:396
采纳率:0%
帮助的人:232万
展开全部
$(':checkbox:selected').length

意思就是所有CHECKBOX元素并且选中的 个数 用length获取
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wenlixmh
2012-02-02 · TA获得超过196个赞
知道答主
回答量:141
采纳率:100%
帮助的人:76.4万
展开全部
var chbSize=0; 被选中的复选框大小 复选框name为chbSingle
$("input[type='checkbox'][name='chbSingle']").each(function () {
if ($(this).attr("checked") == true) {
chbSize++;
}
});
alert(chbSize);弹出个数
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友5b0e900
2012-02-02 · TA获得超过459个赞
知道小有建树答主
回答量:95
采纳率:0%
帮助的人:110万
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>new html page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/site.css" type="text/css" rel="stylesheet" />
<script type='text/javascript' src='file:///g:/test/jquery/jquery-1.6.4.js'></script>
<script type="text/javascript">
<!--
$(function() {
$("#btn").click(function() {
var i = 0;
$(":checkbox").each(function() {
if ($(this).attr("checked") == "checked") {
i++;
}
});
alert(i);
});
});
//-->
</script>
</head>

<body>
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="checkbox" name="1" />
<input type="button" value="num" id="btn" />
</body>
</html>

我帮你测试的代码,你看下,点击按钮获取被选择个数
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
崔冰
2012-02-02 · TA获得超过271个赞
知道小有建树答主
回答量:426
采纳率:0%
帮助的人:169万
展开全部
$("input:checked").size()
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式