Ceci est mon code:
<a href="http://www.google.com" onClick="window.location.href='http://www.yahoo.com';return false;" target="_blank">test</a>
Lorsque vous cliquez dessus, cela vous amène à Yahoo mais cela n'ouvre pas une nouvelle fenêtre?
<a href="#" onClick="window.open('http://www.yahoo.com', '_blank')">test</a>
Aussi simple que ça.
Ou sans JS
<a href="http://yahoo.com" target="_blank">test</a>