码迷,mamicode.com
首页 > 其他好文 > 详细

input 单选按钮radio 取消选中(转载)

时间:2016-03-18 20:07:48      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

input单选按钮: 在radio按钮中添加属性tag  0代表未被选中

HTML代码:

<input name="rdo1" value="AA" type="radio" tag="0" />A
<br />
<input name="rdo2" value="BB" type="radio" tag="0" />B
<br />
<input name="rdo3" value="CC" type="radio" tag="0" />C

jquery代码:

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

 

input 单选按钮radio 取消选中(转载)

标签:

原文地址:http://www.cnblogs.com/lvmylife/p/5293090.html

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