javascript中print函数
时间: 2023-05-31 20:02:31 浏览: 162
jQuery.print
JavaScript中的print()函数用于在浏览器中打印指定的文本、HTML文档或当前窗口的内容。
语法:
window.print();
示例:
<!DOCTYPE html>
<html>
<head>
<title>Print Example</title>
</head>
<body>
<h1>Hello World!</h1>
<p>This is an example of the print function in JavaScript.</p>
<button onclick="window.print()">Print</button>
</body>
</html>
在上面的示例中,当用户单击“Print”按钮时,将调用window.print()函数,弹出浏览器的打印对话框,用户可以选择打印选项并打印页面内容。
阅读全文