js遍历页面中所有的checkbox,全选checkbox
function CheckAll() { for(var i=0;i<document.all.length;i++) { if(document.all[i].type=='checkbox') { docu