使用JavaScript打开链接新窗口(不是选项卡)而不输入两次URL?

时间:2014-10-21 20:30:42

标签: javascript

可以通过以下方式在新窗口(而非制表符)中打开链接:

<a href="print.html"  onclick="window.open('print.html', 'newwindow', 'width=300, height=250'); return false;"> Print</a>

是否可以稍微修改一下,以便JavaScript查看链接的href,这样您就不必在代码中将其写出两次?

1 个答案:

答案 0 :(得分:1)

<a href="print.html"  onclick="window.open(this.href, 'newwindow', 'width=300, height=250'); return false;"> Print</a>

this.hrefhref处理程序中对元素的onclick属性的引用。