Blogger Information
Blog 63
fans 2
comment 0
visits 163424
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
单选框二次点击取消选中
书声的博客
Original
2085 people have browsed it
  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. });
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post