JS / jQuery mailto和加载其他站点

时间:2015-12-06 19:42:56

标签: javascript jquery mailto window.location

我的情况如下: 我有网站: preview.htmlindex.html 现在我在preview.html上有一些输入和一个按钮,它应该使用mailto打开电子邮件程序并加载显示index.html的{​​{1}}

我试过了

preview.html

有谁知道我怎么解决它?

1 个答案:

答案 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);

但更好的解决方案是在服务器上邮寄并重定向