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.
我已成功将 html 页面转换为 pdf。感谢这个很酷的模块。但现在的问题是......我在同一个 html 页面中有一个生成文件的下载链接,它也被打印出来......:D
<nav><a href='/static/pdf/xyz.pdf'>Download</a><nav>
有没有办法逃避锚标记或任何可以忽略某些html元素的方法。
这是解决方案......一个CSS技巧解决了它......:D
<style> @media print { nav { display: none;} } </style>
您的示例中似乎没有关闭引号。我敢打赌,如果您关闭它们,它将解决问题。
<a href='/static/pdf/xyz.pdf'>Download</a>