读书人

个人学习记要 _新手

发布时间: 2012-10-06 17:34:01 作者: rapoo

个人学习记录 _新手
<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;
}

读书人网 >Web前端

热点推荐