ES6页面打印

在某些情况下, 需要在网页上放置一个按钮, 以便使用实际的打印机来打印网页的内容。 JavaScript帮助我们实现了打印网页的实现。
当执行JavaScript中的打印功能window.print()时, 它将打印当前网页。我们只需在onclick事件中使用它即可直接调用此函数。
【ES6页面打印】语法

window.print();

例子
< html> < head> < /head> < body> < center> < h1> Hello World :) :)< /h1> < h2> Welcome to srcmini< /h2> < h2> Click the following print button to see the changes< /h2> < input type = "button" value = "http://www.srcmini.com/Print" onclick = "window.print()"/> < /center> < /body> < /html>

输出如下
成功执行以上代码后, 你将获得以下输出:
ES6页面打印

文章图片
单击” 打印” 按钮时, 将显示以下屏幕:
ES6页面打印

文章图片

    推荐阅读