JavaScript 아이프레임 프린트하기 ( iframe print )
페이지 정보
본문
<script type="text/javascript">
function PrintIframe() {
parent.frames['printFrame'].focus();
parent.frames['printFrame'].print();
}
</script>
<a href="#" onclick="PrintIframe()" class="button"><span>출력</span></a>
<iframe id="printFrame" name="printFrame" style="width:10px; height:10px;" src="" frameborder="1" style="background-color:#FFF"></iframe>
테스트(O) : FifeFox 1.3~12.x , NS 7.x , MSIE 6~9
테스트(X) : Opera 7.x , Chrome 19.x
참고자료
http://www.shop-wiz.com/board/main/view/root/javascript1/206
http://www.velocityreviews.com/forums/t158173-window-print-and-iframe.html
테스트(O) : FifeFox 1.3~12.x , NS 7.x , MSIE 6~9
테스트(X) : Opera 7.x , Chrome 19.x
참고자료
http://www.shop-wiz.com/board/main/view/root/javascript1/206
http://www.velocityreviews.com/forums/t158173-window-print-and-iframe.html
댓글목록
등록된 댓글이 없습니다.