我的情况如下:
我有网站:
preview.html
和index.html
现在我在preview.html
上有一些输入和一个按钮,它应该使用mailto
打开电子邮件程序并加载显示index.html
的{{1}}
我试过了
preview.html
有谁知道我怎么解决它?
答案 0 :(得分:1)
最接近客户端 - 如果浏览器允许的话
window.open("mailto:[myadress]?subject=[formname]&body[his inputs]","_blank");
window.location = "index.html"
或使用iFrame:
window.iFramename.location="mailto:[myadress]?subject=[formname]&body[his inputs]";
setTimeout(function() {
window.location = "index.html";
}),1000);
但更好的解决方案是在服务器上邮寄并重定向