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

2024年11月23日 04:53
有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("");
}
}
)