You cannot see this page without javascript.

print script

Programing 조회 수 313 추천 수 0 2013.12.11 15:34:40
1. 프린트 할 영역의 테이블에 id 값을 준다

ex ) <table id="print_doc"> 생략... </table>

2. 프린트 할곳에 해당 스크립트 와 iframe를 하단에 삽입하며 클릭 버튼을 넣어준다.


<input type="button" value="프린트" onclick="print_();"> <!-- 버튼 넣고싶은곳에 넣는다.-->

<iframe id="hiddenFrame" name="hiddenFrame" width="0" height="0"></iframe> <!-- 팝업을 뛰우지 않기위해-->

<script language="Javascript" type="text/javascript">
<!--
function print_() {
    window.open("./print_hidden.php", "hiddenFrame");
    window.frames['hiddenFrame'].focus();
}
//-->
</script>

3. 같은 디렉토리 안에 print_hidden.php 아래 내용을 넣어서 파일을 생상한다.

<html>
<title>프린트</title>
<body leftmargin=0 topmargin=0></body>
</html>

<script language="Javascript" type="text/javascript">
<!--
function print_() {
    window.print();
}
var base = parent.location.href;
var body = parent.document.getElementById('print_doc').innerHTML;
document.body.innerHTML = "<BASE HREF='"+base+"'>" + body;
window.onload = print_;
//-->
</script>

엮인글 :
List of Articles
번호 제목 글쓴이 날짜 조회 수
369 APM mariadb download origin address LynX 2019-06-19 1991
368 APM What one can and should optimize LynX 2019-06-03 1418
367 CentOS mariadb install LynX 2019-05-31 1182
366 CentOS init mode change LynX 2019-05-30 1290
365 APM ext zip install LynX 2019-02-19 1614
364 APM ext ImageMagick install LynX 2019-02-19 513
363 3D Printer Pronterface(PrintRun) install file LynX 2018-09-13 753
362 CentOS Grub UUID change LynX 2018-08-08 869
361 Linux letsencrypt wildcard LynX 2018-07-26 798
360 Printer cura usb connection LynX 2018-07-06 666
359 CentOS cli 무선랜 LynX 2018-06-07 448
358 APM 윈도우에 APM 페키지 설치 file LynX 2018-05-04 590
357 APM MySQLTuner 설치 LynX 2018-04-27 545
356 CentOS CentOS7 커널 업데이트 LynX 2018-04-23 702
355 HTML Tag CSS 여러가지 모양 만들기 LynX 2018-02-08 772
354 Linux wkhtmltopdf wkhtmltoimage install LynX 2018-01-31 602
353 APM LZ4_LIBS Not Found (CentOS7, MariaDB 10.1.29) LynX 2018-01-03 485
352 APM mysql ./configure LynX 2017-12-15 805
351 APM PHP-7.2.0 LynX 2017-12-12 3157
350 Linux libiconv LynX 2017-12-08 558

XE Login