window.open("URL");
JavaScriptでの使用に制限はありますか?
2 番目のウィンドウを開いた後に3 つのウィンドウを開こうとするとwindow.open("URL")
、3 番目のウィンドウは個別に開かれませんでしたが、最初のウィンドウの内容が更新され、そこに 3 番目のウィンドウの内容が表示されました。
質問する
2033 次
2 に答える
2
ターゲットウィンドウとして「_blank」を使用すると、毎回新しいウィンドウが開きます(のように<a href="url" target="_blank">link</a>
)。例えば:
window.open("URL", "_blank");
ただし、複数のウィンドウを開くと、さまざまなポップアップ ブロック機能やプラグインの影響を受ける可能性があります。
于 2012-10-08T09:24:38.030 に答える
0
Try this-
window.open(url, targetName);
If the targetName is different,the windows will open separately.You can set the targetName randomly to open windows separately.
For Example,
window.open(url,Math.floor(Math.random() * 80000));
于 2012-10-08T10:20:17.553 に答える