如何使用js选择和取消列表里的复选框

2024-11-23 04:53:15
推荐回答(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("");
}
}
)