14 lines
496 B
JavaScript
14 lines
496 B
JavaScript
$(function () {
|
|
//全选反选取消的事件
|
|
$(".selectBtn a").click(function () {
|
|
var cl = $(this).attr("class");
|
|
var checkbox = $("*[id$=cblOrg] input[type=checkbox]");
|
|
checkbox.each(function (index, element) {
|
|
if (cl == "all") $(this).prop("checked", true);
|
|
if (cl == "invert") $(this).prop("checked", !$(this).prop("checked"));
|
|
if (cl == "cancel") $(this).prop("checked", false);
|
|
});
|
|
return;
|
|
});
|
|
});
|