首頁 >web前端 >js教程 >如何在 JavaScript 中輕鬆列印 DIV 元素的內容?

如何在 JavaScript 中輕鬆列印 DIV 元素的內容?

Linda Hamilton
Linda Hamilton原創
2024-12-15 08:14:12992瀏覽

How Can I Easily Print the Content of a DIV Element in JavaScript?

輕鬆列印 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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn