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.
我需要为我通过campaigmonitor 发送的新闻信实现打印选项。如果可能的话,有人可以提出这背后的想法吗?
您可以在文档中粘贴 html 代码,这将提供打印选项
<input type="button" onClick="window.print()" value="Print This Page"/>
如果您可以添加任意 HTML/JavaScript,则表明您正在寻找<a href="javascript:window.print()">print this</a>或类似的东西。否则,您可以建议用户按 CTRL+P,这应该适用于大多数系统。
<a href="javascript:window.print()">print this</a>