首页 > Web开发 > 详细

jquery解决input[type=radio]点击选中取消

时间:2018-01-16 11:01:23      阅读:388      评论:0      收藏:0      [点我收藏+]

input[type=radio] 点击选中后,再次点击选中项,默认是不会取消的。用jquery实现点击选中取消的代码:

  

<input type="radio" name="hobby"> 篮球
<input type="radio" name="hobby"> 足球
<input type="radio" name="hobby"> 网球

$(document).on(‘click‘,‘input[name="hobby"]‘,function() {
                    
        var name = $(this).attr("name");
        $(":radio[name="+ name +"]:not(:checked)").attr("tag",0);
        if( $(this).attr("tag") == 1 ) {
              $(this).attr("checked",false);
              $(this).attr("tag",0);    
        }else {
              $(this).attr("tag",1);
        }

});

  

jquery解决input[type=radio]点击选中取消

原文:https://www.cnblogs.com/wlgz/p/8295401.html

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