struts2 中checkboxlist全选

struts2 中checkboxlist全选
<body onLoad="page_onload();">

function page_onload(){
 if(typeof(initPage)=='function'){
  initPage();
 }
}


function initPage(){
 for(var i=0;i<document.forms[0].elements.length;i++)
{
 if (document.forms[0].elements[i].type=="checkbox" && document.forms[0].elements[i].name.substring(0,22)=="hotelRoom.cardTypeItem"){
 document.forms[0].elements[i].checked=true;
}
}
}

你可能感兴趣的:(struts2 中checkboxlist全选)