Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
打印页面时,显示链接的url,有人可以告诉我为什么吗?
它是一个链接,它应该只像往常一样输出链接文本吗?
如果您正在使用 HTML5 Boilerplate,请查找以下行:
a[href]:after { content: " (" attr(href) ")"; }
导致 URL 打印
那是打印机设置。您可以在打印时在打印属性中将其关闭。
我不太确定,但也许这个媒体查询会起作用:
@media print { a:after { content: ""; } }
标签