프린트 하기
로빈아빠
본문
1. 그창의 내용을 프린트
<a href="javascript:window.print()">프린트하기</a>
2. 새창을 띄우고 그 창의 내용을 프린트
<html><head>
<script language=javascript>
function win_print() {
self.print();
}
</script>
<body onload="javascript:win_print()">
<a href=javascript:window.open("새창에뜨는파일","winpop","width=600,height=500">
프린트하기</a>
</body></html>
3. 프레임에서 한쪽 프레임의 프린트하기 버튼을 클릭했을 때
다른 프레임의 내용을 프린트하기.
프레임 구조 파일
<html>
<frameset rows="150,*">
<frame name="left" src="top.html" scrolling="no" noresize>
<frame name="right" src="down.html">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
프린트 할 페이지 (top.html)
<html>
<head>
<script language="javascript">
function topprint() {
parent.frames[0].focus();
window.print();
}
</script>
</head>
<body>
프린트할 프레임 페이지
</body>
</html>
상대편 문서를 프린트할 명령을 포함하는 페이지 (down.html)
<html><head>
<script language="javascript">
function ttprint() {
parent.frames[0].focus();
parent.frames[0].print();
}
</script>
</head>
<body>
<a href="javascript:parent.frames[0].topprint()">
상대편 프레임 프린트 1</a>
<br><br><br>
<a href="javascript:ttprint()">상대편 프레임 프린트 2</a>
</body>
</html>
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=jt&wr_id=26
<a href="javascript:window.print()">프린트하기</a>
2. 새창을 띄우고 그 창의 내용을 프린트
<html><head>
<script language=javascript>
function win_print() {
self.print();
}
</script>
<body onload="javascript:win_print()">
<a href=javascript:window.open("새창에뜨는파일","winpop","width=600,height=500">
프린트하기</a>
</body></html>
3. 프레임에서 한쪽 프레임의 프린트하기 버튼을 클릭했을 때
다른 프레임의 내용을 프린트하기.
프레임 구조 파일
<html>
<frameset rows="150,*">
<frame name="left" src="top.html" scrolling="no" noresize>
<frame name="right" src="down.html">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>
</html>
프린트 할 페이지 (top.html)
<html>
<head>
<script language="javascript">
function topprint() {
parent.frames[0].focus();
window.print();
}
</script>
</head>
<body>
프린트할 프레임 페이지
</body>
</html>
상대편 문서를 프린트할 명령을 포함하는 페이지 (down.html)
<html><head>
<script language="javascript">
function ttprint() {
parent.frames[0].focus();
parent.frames[0].print();
}
</script>
</head>
<body>
<a href="javascript:parent.frames[0].topprint()">
상대편 프레임 프린트 1</a>
<br><br><br>
<a href="javascript:ttprint()">상대편 프레임 프린트 2</a>
</body>
</html>
출처 : http://qdata.co.kr/bo/bbs/board.php?bo_table=jt&wr_id=26
관련링크
댓글목록
등록된 댓글이 없습니다.