首页 > 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
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板