<form action="" method="post" name="form1">
<script type="text/javascript">
function CheckAll(form)
{
for (var i=0;i<form.elements.length;i++)
{
var e = form.elements[i];
if (e.Name != "chkAll"&&e.disabled!=true)
e.checked = form.chkAll.checked;
}
}
</script>
<input name="chkAll" type="checkbox" ></form>

相关文章:

  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
  • 2022-02-18
  • 2021-10-20
  • 2021-07-14
  • 2021-07-29
猜你喜欢
  • 2022-12-23
  • 2021-11-29
  • 2022-02-14
  • 2022-12-23
  • 2021-06-25
  • 2022-12-23
相关资源
相似解决方案