【JS】限制两个或多个单选框最多只能选择一个

 1  $(function () {
 2             /*$("#checkbox1").click(function(){
 3                 if($(this).attr("checked") == true){
 4                     $("#checkbox2").attr("checked",false);
 5                 }
 6             });
 7             $("#checkbox2").click(function(){
 8                 if($(this).attr("checked") == true){
 9                     $("#checkbox1").attr("checked",false);
10                 }
11             });*/
12             var allBox = $(":checkbox");
13             allBox.click(function () {
14                if(this.checked){
15                    allBox.removeAttr("checked");
16                    $(this).attr("checked", "checked");
17                  }
18             });
19         });
1 <td><input value="1" type="checkbox" id="checkbox1"/>在售<input value="2" type="checkbox" id="checkbox2"/>售罄</td>
原文地址:https://www.cnblogs.com/zhengbin/p/4723172.html