ZhiYeJianKang_PeiXun/Song.Site/Manage/Sys/Scripts/Accounts_Export.js
2025-02-20 15:41:53 +08:00

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;
});
});