<button class="btn btn_big" type="button" onClick="chkall(0)" >反选</button> <button class="btn btn_big" type="button" onClick="chkall(1)" >全选</button> <button class="btn btn_big" type="button" onClick="chkall(2)" >全不选</button> function chkall(v){ var ck=document.getElementsByName("xuanze_fz");//定义checkbox数组变量 for(var i=0;i<ck.length;i++){ if (!ck[i].disabled){//被禁用的不执行操作选择,跳过 if (v==0){ ck[i].checked=!ck[i].checked; }else if (v==1){ ck[i].checked='checked'; }else if (v==2){ ck[i].checked=''; } } } }
版权声明:除特别声明外,本站所有文章皆是本站原创,转载请以超链接形式注明出处!
Tags:
check