问题描述
我有很多页的内容,我想通过一个全选按钮,点击后选中所有页的checkbox,最好附上代码,小弟在此谢谢了!
解决方案
上网一搜一把。
解决方案二:
标签:onclick=selectAll('checkboxIds',this) function:function checkbox(){var str=document.getElementsByName("checkboxIds");var objarray=str.length;var chestr="";for (i=0;i<objarray;i++){ if(str[i].checked == true) { chestr+=str[i].value+","; }}if(chestr == ""){ return false;}else{ var productIdsString = document.getElementById("A"); productIdsString.value = chestr; return true;}}A为传入后台的值,写一个隐藏域:<s:hidden name="A" id="A" value=""/>
时间: 2024-11-02 18:35:51