博客列表 >单选框二次点击取消选中

单选框二次点击取消选中

书声的博客
书声的博客原创
2020年09月03日 18:46:142079浏览
  1. // 单选二次点击取消选中
  2. $(':radio').click(function () {
  3. var r = $(this).attr("name");
  4. $(":radio[name=" + r + "]:not(:checked)").attr("tag", 0);
  5. if ($(this).attr("tag") == 1) {
  6. $(this).prop('checked',false);
  7. $(this).attr("tag", 0);
  8. }else {
  9. $(this).attr("tag",1);
  10. }
  11. });
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议