gpt4 book ai didi

javascript - JS/jQuery mailto 并加载其他网站

转载 作者:行者123 更新时间:2023-12-03 08:11:37 24 4
gpt4 key购买 nike

我的情况如下:我有网站:preview.htmlindex.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);

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

关于javascript - JS/jQuery mailto 并加载其他网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34121812/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com