asp js实现勾选复选框后批量打印?

2024-11-20 04:08:50
推荐回答(1个)
回答(1):

给你一个简单的示例:

<% for t=1 to 10 %>
" value="<%=t%>" />">选项<%=t%>
<% next%>


function printme(){
   var o=window.open("","print");
   var s="";
   for(var t=1;t<=10;t++){
    if(document.getElementById("chk"+t).checked==true){
      s+=""+document.getElementById("span"+t).innerHTML; 
    }
   }
   o.document.write("");
   o.document.write(s);
   o.document.write("");
}

 你根据需要把要打印的格式处理一下就行了