//全选
//CheckedAll 是 全选的id
$(document).on('click', '#CheckedAll', function () {
var nn = $("#CheckedAll").is(":checked");
var namebox = $("input[name='muliCheckbox']");
//console.log(namebox)
if (nn) {
for (i = 0; i < namebox.length; i++) {
namebox[i].checked = true;
}
$("#SalerList").find("tr").addClass('tr_active');
$("#SalerList").find("tr").attr("tag", "selected");
} else {
for (i = 0; i < namebox.length; i++) {
namebox[i].checked = false;
}
$("#SalerList").find("tr").attr("tag", "");
$("#SalerList").find("tr").removeClass('tr_active');
}
})
//点击table行
$(document).on('click', '#SalerList tr', function () {
$(t