您的位置:下载首页 » 技术文章
全选和反选的按钮代码
2010/10/22 10:23:36 | 来源:众智源码网 | 浏览:次阅读

全选和反选的按钮代码,代码如下

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>cyberobject.com - checkbox seclet or disselect all</title>
<script language="JavaScript">
<!--
function checkboxselect(itemname,checkstatus) {
if(!itemname) return;
if(!itemname.length) {
itemname.checked=checkstatus;
} else {
for(var i=0;i<itemname.length;i++) {
   itemname[i].checked=checkstatus;
}
}
}
//-->
</script>
</head>
<body>
<form name="form1" method="post" action="">
<p>
    <input type="checkbox" name="zone_checkbox" value="zone_checkbox" onClick="checkboxselect(document.form1.checkbox, document.form1.zone_checkbox.checked)">全选
</p>
<p>   
    <input type="checkbox" name="checkbox" id="checkbox" value="1">1 <br>
    <input name="checkbox" type="checkbox" id="checkbox" value="2">2 <br>
    <input name="checkbox" type="checkbox" id="checkbox" value="3">3 <br>
    <input name="checkbox" type="checkbox" id="checkbox" value="4">4 <br>
    <input name="checkbox" type="checkbox" id="checkbox" value="5">5 <br>
    <input name="checkbox" type="checkbox" id="checkbox" value="6">6
</p>
<p>
    <input type="submit" name="Submit" value="清除">
</p>
</form>
</body>
</html>


 上一篇文章:Asp随机不重复select查询记录       下一篇文章:没有了
   (合作)  [email protected]
© CopyRight 2009-2010, PK63.NET, Inc.All Rights Reserved.
网站备案号: 版权声明 
如何获得资源分  下载帮助  联系我们