美文网首页
关于input[type=“radio”]是否被选中的问题

关于input[type=“radio”]是否被选中的问题

作者: 东东丶酱 | 来源:发表于2017-10-25 19:20 被阅读0次
1、设置某项单选input为选中状态:
    $("input[type='radio']").attr('checked',true);

②也可设其属性checked为'checked',设置完后原选中项会自动取消选中

$("input[type='radio']").attr('checked','checked');
2、判断某单选框是否被选中状态:
  • ❶ 使用object.attr('checked')==true是错的,应使用object.attr('checked')=='checked'作判断
     $("input[type='radio']").attr('checked')=='checked';
  • ❷也可使用 is(':checked')方法作判断
    $("input[type='radio']").is(':checked');
3、获取被选中的单选框:使用 :checked 方法
$("input[type='radio']:checked");
4、获取所有未选中的单选框。
$("input[type='radio']").not(":checked");

相关文章

网友评论

      本文标题:关于input[type=“radio”]是否被选中的问题

      本文链接:https://www.haomeiwen.com/subject/fblcpxtx.html