标签:com class http blog div code img style java javascript ext
function printpage() { OpenWindow=window.open("", "_blank"); //重写网页 OpenWindow.document.write("<head>"); OpenWindow.document.write("<TITLE>打印报表</TITLE>"); OpenWindow.document.write("<link href=\"<%=basePath + "css/print.css"%>\" rel=\"stylesheet\" type=\"text/css\" />"); OpenWindow.document.write("</head>"); OpenWindow.document.write("<BODY onload=‘window.print();‘>"); OpenWindow.document.write(document.getElementById(‘printcontent‘).innerHTML ); OpenWindow.document.write("</BODY>"); OpenWindow.document.write("</HTML>"); OpenWindow.document.close(); }
最后,添加打印按钮<input onclick="printpage();" type="button" value="打印汇总" />
标签:com class http blog div code img style java javascript ext
原文地址:http://www.cnblogs.com/apigiraffe/p/3694878.html