轻松打印 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中文网其他相关文章!