js怎么控制多个复选框的选中和取消选中

2024-11-23 05:03:26
推荐回答(1个)
回答1:

//导入包  

 

  //全选反选
 $("#chkAll").click(function()
     {
     
   if($(this).prop("checked"))
    {
     $("input[type='checkbox']").prop("checked",true);
     
     $("#chkAll").html(""); 
    }
    else
     {
     $("input[type='checkbox']").prop("checked",false);
     $("#chkAll").html("");
     }
     
     
      
    }
    )