如何让checkbox复选框只能单选
- $("#txm").find(".checkbox").each(function(){
- $(this).click(function(){
- var test= $(this).attr("checked");
- if(this.checked){
- GetData(this.value);
- $(this).parent("div").siblings().children(".checkbox").each(function(){
- if(test== this.checked){
- this.checked = false;
- }
- });
- }
- });
- });
- });