web-dev-qa-db-fra.com

Comment créer un lien hypertexte href HTML vers une nouvelle fenêtre à l'aide de window.location?

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?

52
TheBlackBenzKid
<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>
96
John