jquery全选、反选、全不选
Jquery代码
!function ($) {
//全选 反选 全不选
$("#selAll").click(function () {
$(".lists :checkbox").not(':disabled').prop("checked", true);
});
$("#unSelAll").click(function () {
$(".lists :checkbox").not(':disabled').prop("checked", false);
});
$("#reverSel").click(function () {
//遍历.lists下的 checkbox;
$(".lists :checkbox").not(':disabled').each(function () {
$(this).prop("checked", !$(this).prop("checked"));
});
});
}(jQuery)
HTML代码
<input class="btn btn-default" id="selAll" type="button" value="全选" />
<input class="btn btn-default" id="unSelAll" type="button" value="全不选" />
<input class="btn btn-default" id="reverSel" type="button" value="反选" />
<div class="lists">
<input type="checkbox" value="1" /> 苹果
<input type="checkbox" value="2" /> 香蕉
<input type="checkbox" value="3" /> 菠萝
<input type="checkbox" value="4" /> 桃子
</div>