在下面的例子中,点击 打印当前页 按钮,将会出现打印界面:
<html> <body> <p>一些文字内容......</p> <button onclick="window.print()">打印当前页面</button> </body> </html>
0