如何用jquery实现checkbox点选一个选中其他,取消一个取消其他

2024-12-30 22:12:51
推荐回答(1个)
回答1:

$("input[type=checkbox]").on("click",function(){
    
    if($(this).is(":checked")){
        
        $(this).sibllings("input[type=checkbox]").attr("checked",false);
    }else{
    
        $(this).sibllings("input[type=checkbox]").attr("checked",true);
    }
});