2010. 4. 29. 10:02, DEV/html/css/js/img
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
1. jquery : jquery에서 프린트 관련 플러그인을 제공함. ( jquery.jqprint.0.3.js )
데모 페이지 : http://www.recoding.it/wp-content/uploads/demos/jqprint-demo.htm
2. 페이지 오픈시 자동으로 프린트 dialogue box가 열리도록 하기
function printpage() {
window.print();
}
<body onload="printpage()">
혹은
window.onload = function(){ window.print(); }
3. frame안의 내용만 프린트 하기
if(window.print){
top.otherframe.focus();
top.otherframe.print();
}
4. css : print 모드에서만 적용되는 css
<style type="text/css" media="print">
.print_close {display:none;}
</style>
5. 참고 URL
- javascript print 관련 qna 를 정리한 사이트 : http://www.irt.org/script/print.htm
'DEV > html/css/js/img' 카테고리의 다른 글
date : javascript 내장 객체 (0) | 2010.05.03 |
---|---|
JQuery AlphaNumeric Plugin 한글 문제 수정 (0) | 2010.04.26 |
Jquery 플러그인 제공 사이트 정리 (0) | 2010.04.23 |
Comments, Trackbacks