如何在 php/javascript 中打印输出时隐藏可见的超链接

发布于 2024-10-18 11:52:50 字数 54 浏览 1 评论 0原文

我希望通过 CSS/javascript/PHP 打印该页面(超链接用于打印页面)时隐藏超链接

I would like a hyperlink to be hidden when taking the print of that page(the hyperlink is using to print the page) either by CSS/javascript/PHP

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

羁〃客ぐ 2024-10-25 11:52:50

使用 CSS:

@media print{
  a{
     display: none;
  }
}

并将打印时要显示/隐藏的任何内容放入 print{} 括号内。这些尖括号内的内容只会在打印页面时应用:)

为了更好地测试这一点,您应该首先使用普通的 css 将页面设置为您想要的打印显示方式,然后将其包装在 @media print{ } :)

use CSS:

@media print{
  a{
     display: none;
  }
}

and put inside the print{} brackets whatever you want to show/hide while printing. Whatever is inside those squirly brackets will only be applied when a page is printed :)

To test that better, you should first make the page how u want it to show for print, using normal css, then wrap that in a @media print{} :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文