2

我想在新窗口而不是新标签中打开链接。我在目标中使用了“_blank”和“_new”,但它不起作用,它在新窗口中打开。

<a href="allskills.php" style="text-decoration:none" target="_new">All Skills</a>
or
<a href="#" style="text-decoration:none" onClick="window.open('allskills.php', '_blank')">All Skills</a>

有什么方法可以在新窗口中打开吗?

谢谢

4

2 回答 2

1

FF 使用制表符。您只能使用 Javascript 打开的新窗口: window.open('example.html', 'name', 'settings')

http://www.w3schools.com/js/tryit.asp?filename=try_win_focus

于 2013-09-27T11:50:39.723 回答
1

演示小提琴

试试这个

popupWin = window.open('http://webdesign.about.com/',
'open_window',
'menubar, toolbar, location, directories, status, scrollbars, resizable,
dependent, width=640, height=480, left=0, top=0')
于 2013-09-28T05:17:48.730 回答