本文介绍了使用JQuery / JavaScript调用/单击mailto链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从JavaScript调用链接 - 这是我想要一种允许我在用户PC上打开电子邮件客户端的方法,就像他们点击了正常的mailto链接一样。
I'd like to invoke a mailto link from JavaScript - that is I'd like a method that allows me to open the email client on the users PC, exactly as if they had clicked on a normal mailto link.
我该怎么办?这个?
推荐答案
你可以在这里使用 window.location.href
,像这样:
You can use window.location.href
here, like this:
window.location.href = "mailto:[email protected]";
这篇关于使用JQuery / JavaScript调用/单击mailto链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!