jQuery是如何判断被选中多选框的数量

2024-12-02 09:05:02
推荐回答(2个)
回答1:

$(":checkbox").click(function{
if($("input:checked").size()>=数值){
$(this).removeAttr("checked");
$(":checkbox").attr("disabled","disabled");
$("input:checked").removeAttr("disabled");

}
});

回答2:

$(":checkbox").length ;
$(":checked").sublings().attr("disabled","false");