我想创建一个链接,打开您的默认电子邮件客户端(例如iPhone上的Gmail),并填写以下内容:
如果Body只是一个文本(见下文),我知道如何进行上述操作,但如果是一个HTML表单。
代码,如果它只是正文:
<a href="mailto:email@gmail.com?subject=Your%20Order&body=">Click here to send pre-filled email</a>
感谢您的帮助!
答案 0 :(得分:0)
重复this
继承人代码:
var link = document.getElementById('email');
link.onclick = function() {
this.href = "mailto:you@yourdomain.com?subject=Data&body=";
this.href += getBody();
};
function getBody() {
return 'HelloWorld';
}