자바스크립트 함수 window.print()로 인쇄를 할 수 있다. 전체 화면이 아닌 특정 영역만 인쇄하려면 영역을 지정해주고 인쇄함수를 실행하고 다시 기존 화면으로 변경해야 한다. var div; var initBody; function print(id) { div = document.getElementById(id); window.onbeforeprint = beforePrint; window.onafterprint = afterPrint; window.print(); } function beforePrint() { initBody = document.body.innerHTML; document.body.innerHTML = div.innerHTML; } function afterPrint() { d..