码迷,mamicode.com
首页 > Web开发 > 详细

JSP添加打印部分页面

时间:2014-04-28 05:22:35      阅读:521      评论:0      收藏:0      [点我收藏+]

标签:com   class   http   blog   div   code   img   style   java   javascript   ext   

打印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

JSP添加打印部分页面

标签:com   class   http   blog   div   code   img   style   java   javascript   ext   

原文地址:http://www.cnblogs.com/apigiraffe/p/3694878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!