Windows 小工具 mailto:链接不起作用
我正在创建一个 Windows 小工具,但发现我的 mailto 链接根本不起作用。我还有其他完美工作的链接,例如:
<a href="http://www.yahoo.com" target="new">Yahoo</a>
但是当我这样做时,它没有做任何事情
<a href="mailto:[email protected]">[email protected]</a>
,或者我也尝试过这个
<a href="mailto:[email protected]" target="new">[email protected]</a>
有什么想法吗?
I'm creating a Windows Gadget and have found that my mailto links are not working at all. I have other links that work perfectly like:
<a href="http://www.yahoo.com" target="new">Yahoo</a>
But when I do this, it doesn't do anything
<a href="mailto:[email protected]">[email protected]</a>
or I also tried this
<a href="mailto:[email protected]" target="new">[email protected]</a>
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mailto:
协议在运行 Windows 7 和 MS Outlook 的小工具中运行良好,在我设置电子邮件帐户后,它也可以在我的 Windows Vista 虚拟机上运行 使用 Windows Live Mail。我会确保您已在正在测试的计算机上设置了电子邮件帐户。
The
mailto:
protocol works fine for me in a gadget running on Windows 7 with MS Outlook, and it also worked on my Windows Vista virtual machine after I had set up an email account with Windows Live Mail.I would ensure that you have set up an email account on the machine you're testing with.