我的ASP.NET页面上有一个HTML链接。当用户单击该链接时,将打开Outlook窗口。但是,它会将我页面上的网址也更改为mailto:reddy@yahoo.com
。
如何阻止它?
<a href="#"
onclick="window.open('mailto:reddy@yahoo.com?Subject=upport','','200','200');"
style="color: White">Contact Support</a>
答案 0 :(得分:5)
不要在window.open中执行此操作。只需在页面上显示链接,作为普通链接,无论如何Outlook都将在新窗口中打开,因为它是一个不同的程序。
答案 1 :(得分:2)
这个怎么样?
<a href="mailto:reddy@yahoo.com?Subject=upport" style="color: White">Contact Support</a>
答案 2 :(得分:1)
使用JavaScript,您将导航到mailto
。
您可以切换到常规锚标记mailto
链接吗?
<a href="mailto:foo@bar.com?Subject=upport">Contact Support</a>