码迷,mamicode.com
首页 > Web开发 > 详细

jQuery 批量操作checkbox

时间:2017-05-07 00:11:39      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:bsp   attr   批量   false   pre   jquery   input   inpu   type   

困扰很久的问题:

如果只是

$(‘input[type=checkbox]‘).attr(‘checked‘,true);//全选
$(‘input[type=checkbox]‘).attr(‘checked‘,false);//不选择

 只能是第一全选和全不选有效,后面就失效了。

后来查到要这要操作:

//选中
$(‘#checkbox1‘).attr(‘checked‘,true);
$(‘#checkbox1‘).prop(‘checked‘,true);
//取消
$(‘#checkbox1‘).attr(‘checked‘,false);
$(‘#checkbox1‘).prop(‘checked‘,false);

 

jQuery 批量操作checkbox

标签:bsp   attr   批量   false   pre   jquery   input   inpu   type   

原文地址:http://www.cnblogs.com/format/p/6818915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!