欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js解决checkbox全选和反选的问题

程序员文章站 2024-03-21 14:32:52
...
function SelectAll() {
 var checkboxs=document.getElementsByName("chk_list");
 for (var i=0;i<checkboxs.length;i++) {
  var e=checkboxs[i];
  e.checked=!e.checked;
 }
}

 

<input type="checkbox" name="choose">跳舞
<input type="checkbox" name="choose">跳水
<input type="checkbox" name="choose"/>跳棋
<input type="checkbox" name="choose"/>跑步
<input type="checkbox" name="allChecked" id="allChecked" onclick="SelectAll()"/>全选/取消