html打印选项,隐藏打印按钮

时间:2017-01-19 12:24:12

标签: html css

打印时我不希望硬拷贝中的打印按钮。

<html>
    <head>
     <title>New Page 1</title>

    </head>
    <body>
     <p>
        This is just a paragraph fellas. I do not want the print button in the hard copy.
     </p>
    <input type="button" value="print" onclick="window.print()" />
    </body>
</html>

此外,如果有一个网站说明如何正确使用如何打印页面特定部分的硬拷贝,请同时提供参考。谢谢。

1 个答案:

答案 0 :(得分:1)

使用

隐藏打印button

this.style.display='none';

打印前

&#13;
&#13;
<html>
    <head>
     <title>New Page 1</title>

    </head>
    <body>
     <p>
        This is just a paragraph fellas. I do not want the print button in the hard copy.
     </p>
    <input type="button" value="print" onclick="this.style.display='none';window.print();" />
    </body>
</html>
&#13;
&#13;
&#13;