實例如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>js print打印網頁指定區域內容的簡單實例</title> </head> <script> function myPrint(obj){ var newWindow=window.open("打印窗口","_blank"); var docStr = obj.innerHTML; newWindow.document.write(docStr); newWindow.document.close(); newWindow.print(); newWindow.close(); } </script> <div id="print"> <hr /> 打印演示區域,點擊打印後會在新窗口加載這裡的內容! <hr /> </div> <button onclick="myPrint(document.getElementById('print'))">打 印</button> </html>
以上就是小編為大家帶來的js print打印網頁指定區域內容的簡單實例全部內容了,希望大家多多支持~