checkbox复选框的全选和全不选

 

首先,将所有的checkbox的名字写成一样:

 

<input type="checkbox" name="hehe" value="11">

<input type="checkbox" name="hehe" value="22">

<input type="checkbox" name="hehe">

<input type="checkbox" name="hehe">

  function CheckAll(boolvalue) { var allCheckBoxs=document.getElementsByName("hehe"); for(i=0;i<allCheckBoxs.length;i++) { if(allCheckBoxs[i].type="checkbox") { allCheckBoxs[i].checked=boolvalue; } } }

 

想全选的时候调用CheckAll(true)就OK了,全不选当然相反就OK。 

你可能感兴趣的:(function,input)