print_page.jsp
<%@ page language = "java" contentType = "text/html; charset=UTF-8"
pageEncoding = "UTF-8"%>
<! DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" >
< html>
< head>
< meta http-equiv = "Content-Type" content = "text/html; charset=UTF-8">
< title> 출력 </title >
< script type = "text/javascript" src = "/js/jquery-1.6.1.min.js" ></script >
< script type = "text/javascript">
<!--
$(document).ready( function (){
$( "#printHtml" ).html( $(opener.document).find("#${param.htmlId}" ).val());
window.print();
setTimeout ( function (){window.close();},1000);
});
// -->
</ script>
</ head>
< body>
< pre id = "printHtml">
</ pre>
</ body>
</ html>
호출페이지에 해당 DIV의 ID를 파라미터로 넘겨준다.
window.open("/print_page.jsp?htmlId=" + id);
'개발' 카테고리의 다른 글
[jQuery] file폼 확장자 체크하기. (0) | 2013.07.29 |
---|---|
[jQuery/Javascript] 달력 datepicker v2.2 (29) | 2013.04.22 |
[jQuery] table excel로 다운로드 하기 (0) | 2013.03.28 |
[jQuery] table td show/hide (0) | 2013.03.28 |
[JSP] tomcat5.5 mysql datasource 데이타소스 연결법 (0) | 2012.11.24 |