我正在尝试通过单击按钮打开包含某些内容的电子邮箱。我在jquery中使用以下代码。
window.location.href = "mailto:user@example.com?subject=Subject&body='message%20goes%20here'";
在电子邮件正文中,其打印为“消息在此处”...但我想按照'message%20goes%20here'打印
请帮帮我们。
答案 0 :(得分:0)
使用encodeURIComponent
代码,试试这个:
var messageBody = "message%20goes%20here";
window.location.href = "mailto:user@example.com?subject=Subject&body="+encodeURIComponent(messageBody);