인쇄하기 기능



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
        var script = document.createElement('script');
 
        script.type = 'text/javascript';
 
        script.async = true;
 
        script.innerHTML = "window.onload = function(){ window.print();window.close();}";
 
 
 
        var win = window.open();
 
        win.document.write("<html><head>"+document.head.innerHTML+"</head><body>"+document.getElementById($.panMain.id).innerHTML+"</body></html>");
 
        win.document.head.appendChild(script);
 
        win.document.close();
cs


'* Programming > JavaScript' 카테고리의 다른 글

비밀번호 / 이메일 / 전화번호 / 핸드폰 정규식  (0) 2020.04.14
주소/우편번호 찾기 API  (0) 2019.10.24
클로저를 이용한 bean 객체 생성  (0) 2016.10.05
THIS  (0) 2016.10.05
클로져(Closure)  (0) 2016.10.05

+ Recent posts