아.. 어딘가에서 사용했었던건대 찾을려니 안보여서 뒤적 뒤적거려서 다시 메모해둡니다.
<html파일>
<div id="print_content">
<table>
<tr>
<td>출력할 부분</td>
</tr>
</table>
</div>
<a href="javascript:print_content('serviceaddress');"><img src="img/button2.gif" border="0" width="57" height="22" style="cursor:hand"/></a>
[js파일]
/* 특정 부분을 출력할때 쓰임 */
function print_content(p_service){
window.open("/print_content.html","","directories=0,location=0,menubar=0,scrollbars=0,toolbar=0,width=500,height=500, left=0, top=0;");
// left와 top의 위치를 5000으로 해서 화면에는 안보이게 한다.
}
[print_content.html]
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/css.css">
</head>
<body onLoad="window.close();">
<form name="testform">
<input type="hidden" name="data" value>
</form>
<script language="javascript">
{
var print_all;
(document.testform.data.value = window.opener.document.all.print_content.innerHTML);
print_all = (document.testform.data.value);
document.write (print_all);
window.print();
}
</script>
</body>
</html>
'HTML & Script' 카테고리의 다른 글
text-overflow:ellipsis (0) | 2012.06.04 |
---|---|
IE 인쇄 페이지 설정 컨트롤 (0) | 2012.05.04 |
bootstrap IE (0) | 2012.04.04 |
12 Principles For Keeping Your Code Clean (0) | 2012.04.01 |
조건부 주석(Conditional comments) 사용하기 (0) | 2012.03.31 |