jQuery 实现form的全选
代码如下:
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<script type=”text/javascript” src=”jquery-1.4.3.min.js“></script>
<script type=”text/javascript”>
function checkAll(objChkAll){
var frm = jQuery(objChkAll).parents().filter(“form,:first”);
if(frm != null){
jQuery(frm).find(“:checkbox”).attr(“checked”,objChkAll.checked);
}
}
</script>
</head>
<body>
<form action=”” method=”post”>
<input type=”checkbox” name=”checkbox” id=”checkbox” onclick=”checkAll(this);” />全选
<input type=”checkbox” name=”checkbox” id=”checkbox” />1
<input type=”checkbox” name=”checkbox” id=”checkbox” />2
<input type=”checkbox” name=”checkbox” id=”checkbox” />3
<input type=”checkbox” name=”checkbox” id=”checkbox” />4
<input type=”checkbox” name=”checkbox” id=”checkbox” />5
</form>
</body>
</html>
保存下,备用。
其他方法,利用JS实现全选:js 实现 checkbox 的全选
xiaoxiaopin
8月 7, 2011 6:10 下午
不错 来一次就不一样的感觉了
客美达
8月 7, 2011 1:15 上午
转走了哦。。。告知一声