So here's a simple but interesting question, how can I open multiple links using single <a>
element?
这里有一个简单但有趣的问题,如何使用single 元素打开多个链接?
Using this only opens the first href
使用这个只打开第一个href
<a href="http://www.google.com" href="http://www.yahoo.com" target="_blank">Click Here</a>
1 个解决方案
#1
37
You can certainly try this
你当然可以试试。
演示
<a href="http://www.microsoft.com" target="_blank" onclick="window.open('http://www.google.com'); window.open('http://www.yahoo.com');">Click Here</a>
#1
37
You can certainly try this
你当然可以试试。
演示
<a href="http://www.microsoft.com" target="_blank" onclick="window.open('http://www.google.com'); window.open('http://www.yahoo.com');">Click Here</a>