js脚本checkBox全选的方法
function selected1(spanChk)
{
var oItem = spanChk.children;
var theBox=(spanChk.type=="checkbox")?spanChk:spanChk.children.item[0];
xState=theBox.checked;
elm=theBox.form.elements;
for(i=0;i<elm.length;i++)
if(elm[i].type=="checkbox" && elm[i].id!=theBox.id&&elm[i].id!='cbBool')
{
if(elm[i].checked!=xState)
elm[i].click();
}
}