// 全选、取消全选
$("#btn1").on(‘click‘, function () {
$("input[type=checkbox]").prop("checked", true);
})
$("#btn2").click(function () {
$("input[type=checkbox]").prop("checked", false);
})
再举一个例子:
<input id="chk1" type="checkbox" />是否可见
<input id="chk2" type="checkbox" checked="checked" />是否可见
像checkbox,radio和select这样的元素,选中属性对应“checked”和“selected”,这些也属于固有属性,因此需要使用prop方法去操作才能获得正确的结果。
$("#chk1").prop("checked") == false $("#chk2").prop("checked") == true
如果上面使用attr方法,则会出现:
$("#chk1").attr("checked") == undefined $("#chk2").attr("checked") == "checked"
标签:取消 attr www htm 引入 pre post select input
原文地址:http://www.cnblogs.com/smallyi/p/6724164.html