一聚教程网:一个值得你收藏的教程网站

热门教程

jquery判断复选框checkbox选中个数

时间:2022-06-25 16:53:48 编辑:袖梨 来源:一聚教程网

首先引入jquery文件

判断check是否选中

多选框checkbox:

 代码如下 复制代码

 $("#chk1").attr("checked",'');//不打勾
 $("#chk2").attr("checked",true);//打勾
 if($("#chk1").attr('checked')==undefined) //判断是否已经打勾

读取复选框checkbox的个数

 代码如下 复制代码

1.var num = $(":input[name=color][checked]").length;

也可以这样写:

 代码如下 复制代码

1.var num = $(":input[name=color]:checked").length;

以上两种方法兼容ie、firefox和谷歌浏览器

jquery判断复选框处于选中状态的个数

1.  $("input[type='checkbox'][name='roleId'][checked=true]").length     动态得到处于选中的个数

2.  $("input[type='checkbox'][name='roleId'][checked]").length             动态得到处于选中的个数

3.  $("input[type='checkbox'][name='roleId']checked").length               只是的到页面中含有checked的个数

热门栏目