2017-06-06 132 views
1

我可以在新瀏覽器中點擊鏈接(而不是彈出窗口)嗎?如何在新的瀏覽器窗口中使用ie打開鏈接11

事情我已經嘗試:

<a href='http://osric.net/' onclick='return !window.open(this.href);'>osric.net web hosting</a> 

函數的onclick:

var windowObjectReference; 
var strWindowFeatures = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes, toolbar=yes"; 

function openRequestedPopup() { 
    windowObjectReference = window.open("http://www.cnn.com/", "CNN_WindowName", strWindowFeatures); 
} 

但這些它唯一的新選項卡中打開。

+0

你怎麼一個「新的瀏覽器窗口」和「彈出窗口」之間的區分模仿瀏覽器? – Quentin

回答

-1

這裏有雲

<a href="your_link" target="_blank">Visit</a> 

目標= 「_空白」 - 是關鍵

使用此新窗口

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

編號:Make a link open a new window (not tab)

+1

但是'target ='_ blank''不能控制窗口在標籤或新窗口中打開。 – Code4R7

+0

在給答案之前閱讀問題... –

0

這在IE 11:

<script> 
function popupBrowser(url) { 
    window.open(url, "WindowName", "config=menubar=no,location=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes,fullscreen=yes"); 
} 
</script> 

<a href="javascript:popupBrowser('http://www.cnn.com')">Open a new browser for IE11</a> 

它只是利用windows.open()

JSFiddle demo

相關問題