新しいブラウザ(ではなく、ポップアップウィンドウ)でクリックするとリンクを開くことはできますか?新しいブラウザウィンドウでリンクを開くにはどうすればいいですか?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