我可以在新瀏覽器中點擊鏈接(而不是彈出窗口)嗎?如何在新的瀏覽器窗口中使用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);
}
但這些它唯一的新選項卡中打開。
你怎麼一個「新的瀏覽器窗口」和「彈出窗口」之間的區分模仿瀏覽器? – Quentin