2017-06-02 272 views
0

我想打開一個新窗口,但我希望它是一個與主瀏覽器分開的自由浮動彈出窗口(不在新選項卡中) 每個示例使用各種javascript/jquery/target =「_ blank」方法總是在新選項卡中打開。我想從主瀏覽器打開新窗口彈出窗口與瀏覽器分開

回答

1

這是爲我工作的窗口,「浮動」分開,我用這個在我的項目之一: https://jsfiddle.net/9o5f9Ls0/2/

<a onclick="window.open(this.href, 'test', 'left=20,top=20,resizable=0'); return false;" href='https://www.google.com'>Test</a> 
0

看到這個答案:Make a link open a new window (not tab)

這裏有一個片段可以完成你所描述的內容。

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