关于js 全选 反选
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于js 全选 反选相关的知识,希望对你有一定的参考价值。
prop
- 对于html元素本身就带有的固有属性,在处理时,使用prop方法。
attr
- 对于HTML元素我们自己自定义的DOM属性,在处理时,使用attr方法。
$("#selectAll").click(function () { //全选
if ($(this).is(‘:checked‘)) {
$(".reseller_checkbox:checkbox").prop("checked", true);
} else {
$(".reseller_checkbox:checkbox").prop("checked", false);
}
});
$("#reverse").click(function () { //反选
$(".reseller_checkbox:checkbox").each(function () {
$(this).prop("checked", !$(this).prop("checked"));
});
});
以上是关于关于js 全选 反选的主要内容,如果未能解决你的问题,请参考以下文章
Layui table中筛选列增加 [全选,反选] 功能【转】