php打印脚本没有打印打印按钮

时间:2013-11-06 15:42:56

标签: php printing

我有一个打印脚本来打印页面

$print9 ='<script>
function printpage()
  {
  window.print()
  }
</script>
    </head>
    <body><input type="button" value="Print" onclick="printpage()">

    </body>

    </html></div>
    ';

echo $print9;

它完美地工作但它也在硬拷贝中打印打印按钮,并且想要打印打印按钮 我怎么能这样做我也搜索,但我无法理解答案。

3 个答案:

答案 0 :(得分:3)

为什么不只是:

<script>window.print()</script>

或者,如果您想打印onclick但隐藏按钮:

@media print {
  /* style sheet for print goes here */
  .hide-from-printer{  display:none; }
}

现在任何具有此类的元素在打印时都不可见,因此只需将其应用于按钮:

<input class="hide-from-printer" type="button" value="Print" onclick="printpage()">

答案 1 :(得分:2)

使用CSS和@media print规则隐藏“打印”媒体的按钮。

答案 2 :(得分:2)

简单!

<script>window.print()</script>