首页 > Web开发 > 详细

jquery设置、判断、获取input单选标签选中状态

时间:2016-02-16 18:19:57      阅读:333      评论:0      收藏:0      [点我收藏+]
1、设置某项单选input为选中状态:
$("input[type=‘radio‘]").eq(1).attr(‘checked‘,true);
②也可设其属性checked为‘checked‘,设置完后原选中项会自动取消选中
$("input[type=‘radio‘]").eq(1).attr(‘checked‘,‘checked‘);
2、判断某单选框是否被选中状态:
? 使用object.attr(‘checked‘)==true是错的,应使用object.attr(‘checked‘)==‘checked‘作判断
$("input[type=‘radio‘]").eq(1).attr(‘checked‘)==‘checked‘;
?也可使用 is(‘:checked‘)方法作判断
$("input[type=‘radio‘]").eq(1).is(‘:checked‘);
3、获取被选中的单选框:使用 :checked 方法
$("input[type=‘radio‘]:checked");

 

jquery设置、判断、获取input单选标签选中状态

原文:http://www.cnblogs.com/liujingjing/p/5193146.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!