JS实现页面打印功能

示例1.

可直接在按钮添加调用打印方法:

<input type='button' value='打印整页' />

示例2.

也可调用JS方法

<html> <head> <script type="text/javascript"> function printpage() { window.print() } </script> </head> <body> <input type="button" value="Print this page" /> </body> </html>

关于window.print()方法

print() 方法用于打印当前窗口的内容。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持脚本之家!

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wwwzxj.html