JSP添加打印部分页面

时间:2014-04-28 05:22:35   收藏:0   阅读:521

打印a.jsp的部分页面

  1. 将影响要打印的内容放到<div id="printcontent">中
  2. 为想要打印的内容创建样式pirnt.css
  3. 在a.jsp中添加以下内容:
mamicode.com,码迷
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();
}
mamicode.com,码迷

  最后,添加打印按钮<input onclick="printpage();"  type="button" value="打印汇总" />

JSP添加打印部分页面,码迷,mamicode.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!