자바스크립트

자바스크립트 프린트 윈도우 예제

자바스크립트 프린트 윈도우 예제 var printWindow = window.open('', '프린트 윈도우 예제', 'height=900,width=800'); printWindow.addEventListener("load", function() { alert("loaded"); }, false); printWindow.document.write('<html><head><title>프린트 윈도우 예제</title>'); printWindow.document.write( [ '<link rel="stylesheet" type="text/css" media="all" href="print.css" />', ].join('') …

자바스크립트 프린트 윈도우 예제 Read More »

Scroll to Top