如何在 php/javascript 中打印输出时隐藏可见的超链接
我希望通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 CSS:
并将打印时要显示/隐藏的任何内容放入 print{} 括号内。这些尖括号内的内容只会在打印页面时应用:)
为了更好地测试这一点,您应该首先使用普通的 css 将页面设置为您想要的打印显示方式,然后将其包装在 @media print{ } :)
use CSS:
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{} :)
您可以使用 css 媒体类型来实现这一点。看看这个链接:
You can use css media types for that. Take a look at this links: