当前位置: 首页 > 教程 > ECMAScript/ES6 >

ECMAScript/ES6页面打印

精华
小牛编辑
103浏览
2023-03-14

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

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

语法

window.print();

示例代码:

<html>   
<head>    
</head>   
<body>   
    <center>   
        <h1>Hello World</h1>   
        <h2>Welcome to XNTutor</h2>   
        <h2>Click the following print button to see the changes</h2>   
        <input type = "button" value = "打印此页面内容" onclick = "window.print()"/>  
    </center>   
</body>   

</html>

运行结果如下: