JS/jQuery 邮寄到并加载其他网站
JS/jQuery mailto AND loading other site
我的情况如下:
我有网站:
preview.html
和 index.html
现在我在 preview.html
上有一些输入和一个按钮,它应该使用 mailto
打开电子邮件程序并加载 index.html
,其中显示 preview.html
我试过了
window.location.href = "mailto:[myadress]?subject=[formname]&body[his inputs]";
window.location = "index.html"
有谁知道我该如何解决?
最接近的客户端 - 如果浏览器允许您是
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);
但更好的解决方案是在服务器上发送邮件并重定向
我的情况如下:
我有网站:
preview.html
和 index.html
现在我在 preview.html
上有一些输入和一个按钮,它应该使用 mailto
打开电子邮件程序并加载 index.html
,其中显示 preview.html
我试过了
window.location.href = "mailto:[myadress]?subject=[formname]&body[his inputs]";
window.location = "index.html"
有谁知道我该如何解决?
最接近的客户端 - 如果浏览器允许您是
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);
但更好的解决方案是在服务器上发送邮件并重定向