Bookmarklet在新窗口中?

时间:2013-01-03 11:27:51

标签: bookmarklet

我想添加一个在新窗口中打开webradio的书签。

我尝试了以下代码:

javascript:window.open('http//www.franceinter.fr/player',width=600,height=600,toolbar=no');

但我不行。

知道为什么吗?

1 个答案:

答案 0 :(得分:1)

我只需要添加:

'_blank'

=>

javascript:window.open("http://www.franceinter.fr/player",'_blank','width=600,height=600,toolbar=no');