当前位置: 代码迷 >> Web前端 >> 个人学习记要 _新手
  详细解决方案

个人学习记要 _新手

热度:115   发布时间:2012-10-06 17:34:01.0
个人学习记录 _新手
<input type="button" onclick="changeBoxes(1)" value="select all" />
<input type="button" onclick="changeBoxes(-1)" value="invertselection" />
<input type="button" onclick="changeBoxes(0)" value="select none" />

for(var i=0;i<elms.length;i++){
    if(elms[i].type!='checkbox'){continue;}
    elms[i].checked=action<0?(elms[i].checked?0:1):action;
  }
  相关解决方案