个性化阅读
专注于IT技术分析

ES6页面打印

在某些情况下, 需要在网页上放置一个按钮, 以便使用实际的打印机来打印网页的内容。 JavaScript帮助我们实现了打印网页的实现。

当执行JavaScript中的打印功能window.print()时, 它将打印当前网页。我们只需在onclick事件中使用它即可直接调用此函数。

语法

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 = "Print" onclick = "window.print()"/>
    </center> 
</body> 
  
</html>

输出如下

成功执行以上代码后, 你将获得以下输出:

ES6页面打印

单击”打印”按钮时, 将显示以下屏幕:

ES6页面打印

赞(0)
未经允许不得转载:srcmini » ES6页面打印

评论 抢沙发

评论前必须登录!