You cannot see this page without javascript.

인쇄할 영역만 인쇄

Programing 조회 수 1030 추천 수 0 2013.12.06 22:07:38

1.특정부분인쇄
2.웹페이지 주소안나옴
3.헤더와푸터를 맘대로
4.한페이지가 넘어갈경우 중간에 짤리지 않고 깔끔하게 다음장으로 ;;
<head>
<!-- 헤드사이에 스크립트를 넣습니다. -->
<SCRIPT>
function pagePrint(Obj) {
var W = Obj.offsetWidth;        //screen.availWidth;
var H = Obj.offsetHeight;        //screen.availHeight;
var features = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=" + W + ",height=" + H + ",left=0,top=0";
var PrintPage = window.open("about:blank",Obj.id,features);
PrintPage.document.open();
PrintPage.document.write("<html><head><title></title><style type='text/css'>body, tr, td, input, textarea { font-family:굴림; font-size:12px; }</style>n </head>n<body>" + Obj.innerHTML + "n</body></html>");
PrintPage.document.close();
PrintPage.document.title = document.domain;
PrintPage.printWindow(PrintPage.location.reload());
}
</SCRIPT>
</head>
<!--그리고 인쇄할곳을 찾아서 div 태그로 감싸줍니다.-->
<body>
<table BORDER=1>
 <tr>
  <td> 인쇄 안할곳<br>
   <a href="javascript:pagePrint(d2)">인쇄 해야할곳만 인쇄하자~!</a> </td>
 </tr>
</table>
<DIV ID="d2">
<script>
function printWindow() {
 factory.printing.header = "헤더의 내용";
 factory.printing.footer = "푸터의 내용";
 factory.printing.portrait = true; //false 로할경우 가로방향으로 출력합니다.
 factory.printing.leftMargin = 20.0;//마진값은 적당하게 주시면 됩니다.
 factory.printing.topMargin = 1.0;
 factory.printing.rightMargin = 1.0;
 factory.printing.bottomMargin = 1.0;
 factory.printing.Print(false);
}
</script>
<object id=factory style='display:none'  classid='clsid:1663ed61-23eb-11d2-b92f-008048fdd814'  codebase='자기서버에 파일위치/smsx.cab#Version=6,4,438,06'>
</object>
<table BORDER=1>
 <tr>
  <td> 인쇄 해야할곳!!!! </td>
 </tr>
</table>
</DIV>
</body>
이렇게 하시면 인쇄 하기 버튼을 누르시면
새창이뜨면서 인쇄할 영역만 보여지고 인쇄창이 뜨게 됩니다.


smsx.cab

첨부
엮인글 :
List of Articles
번호 제목 글쓴이 날짜sort 조회 수
369 APM mariadb download origin address LynX 2019-06-19 1989
368 APM What one can and should optimize LynX 2019-06-03 1415
367 CentOS mariadb install LynX 2019-05-31 1179
366 CentOS init mode change LynX 2019-05-30 1288
365 APM ext zip install LynX 2019-02-19 1612
364 APM ext ImageMagick install LynX 2019-02-19 511
363 3D Printer Pronterface(PrintRun) install file LynX 2018-09-13 753
362 CentOS Grub UUID change LynX 2018-08-08 867
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 446
358 APM 윈도우에 APM 페키지 설치 file LynX 2018-05-04 586
357 APM MySQLTuner 설치 LynX 2018-04-27 544
356 CentOS CentOS7 커널 업데이트 LynX 2018-04-23 699
355 HTML Tag CSS 여러가지 모양 만들기 LynX 2018-02-08 771
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 804
351 APM PHP-7.2.0 LynX 2017-12-12 3157
350 Linux libiconv LynX 2017-12-08 558

XE Login