輕鬆列印 DIV 內容
列印 DIV 內容是 Web 開發中常見的任務。這是應對這項挑戰的有效解決方案:
解決方案:
提供的 JavaScript 函數 PrintElem 提供了一種列印 DIV內容的綜合方法,只需稍加修改即可增強與現代瀏覽器喜歡Chrome:
function PrintElem(elem) { // Open a new window for printing var mywindow = window.open('', 'PRINT', 'height=400,width=600'); // Write HTML structure to the new window mywindow.document.write(`<html><head><title>` + document.title + `</title></head>`); mywindow.document.write('<body >'); mywindow.document.write('<h1>' + document.title + '</h1>'); // Insert the DIV's innerHTML into the new window mywindow.document.write(document.getElementById(elem).innerHTML); // Complete the HTML structure and close the window mywindow.document.write('</body></html>'); mywindow.document.close(); // Essential for IE >= 10 // Focus and print the window mywindow.focus(); mywindow.print(); mywindow.close(); return true; }
用法:
要列印id 為“myDiv”的DIV 的內容,只需呼叫PrintElem 函數,如下圖:
PrintElem('myDiv');
以上是如何在 JavaScript 中輕鬆列印 DIV 元素的內容?的詳細內容。更多資訊請關注PHP中文網其他相關文章!