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

jQuery设置第一个checkbox 为选中值

时间:2017-07-09 18:18:35      阅读:498      评论:0      收藏:0      [点我收藏+]

标签:attr   radio   ...   hive   com   http   logs   htm   html   

1设置第一个checkbox 为选中值
$(‘input:checkbox:first‘).attr("checked",‘checked‘);
或者
$(‘input:checkbox‘).eq(0).attr("checked",‘true‘);

2、设置最后一个checkbox为选中值
$(‘input:radio:last‘).attr(‘checked‘, ‘checked‘);
或者
$(‘input:radio:last‘).attr(‘checked‘, ‘true‘);

3、根据索引值设置任意一个checkbox为选中值
$(‘input:checkbox).eq(索引值).attr(‘checked‘, ‘true‘);索引值=0,1,2....
或者
$(‘input:radio‘).slice(1,2).attr(‘checked‘, ‘true‘);

4、选中多个checkbox同时选中第1个和第2个的checkbox
$(‘input:radio‘).slice(0,2).attr(‘checked‘,‘true‘);

5、根据Value值设置checkbox为选中值
$("input:checkbox[value=‘1‘]").attr(‘checked‘,‘true‘);

参考:http://www.cnblogs.com/hs8888/archive/2016/05/23/5520511.html

jQuery设置第一个checkbox 为选中值

标签:attr   radio   ...   hive   com   http   logs   htm   html   

原文地址:http://www.cnblogs.com/weimingxin/p/7141966.html

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