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

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

Linda Hamilton
發布: 2024-12-15 08:14:12
原創
991 人瀏覽過

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板