在新窗口中打开链接

Avatar of Chris Coyier
Chris Coyier

HTML 属性(现已在 HTML5 中有效)

<a href="http://chriscoyier.net" target="_blank">This link will open in new window/tab</a>

内联 JavaScript 方法

<a href="http://chriscoyier.net" onclick="window.open(this.href); return false;" onkeypress="window.open(this.href); return false;">This link will open in new window/tab</a>

使用 jQuery

请查看这里