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