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.
$("#mail").click(function() { location.href = "mailto:?subject=test&body="+$("#mailbody").html(); });
我正在尝试将邮件正文添加到#mailbody div 的内容(5 个表)中。但 Outlook 将其作为文本获取。喜欢<table><tr>..
<table><tr>..
是关于 Outlook 设置还是我不能用 javascript 做这个?
不,你不能。
这是定义 mailto URL 方案的 RFC:
https://www.rfc-editor.org/rfc/rfc2368
看看它对特殊字符的编码。