スタックオーバーフローで多くの問題を検索しましたが、重複している可能性がありますここ ポップアップの検出
だが not helped for me
Chromeでテスト中(v26.0.1410.64でテスト済み)
以下のアプローチWorked in IE and Firefox
だが not in Chrome
var popup = window.open(winPath,winName,winFeature,true);
if (!popup || popup.closed || typeof popup.closed=='undefined'){
//Worked For IE and Firefox
alert("Popup Blocker is enabled! Please add this site to your exception list.");
window.location.href = 'warning.html';
} else {
//Popup Allowed
window.open('','_self');
window.close();
}
Chrome=でも機能するより良い解決策はありますか?
最後に、Stackoverflowのメンバーからの異なる回答を組み合わせることで成功
このコードは私のために働き、IE, Chrome & Firefox
でテストされました
var popup = window.open(winPath,winName,winFeature,true);
setTimeout( function() {
if(!popup || popup.outerHeight === 0) {
//First Checking Condition Works For IE & Firefox
//Second Checking Condition Works For Chrome
alert("Popup Blocker is enabled! Please add this site to your exception list.");
window.location.href = 'warning.html';
} else {
//Popup Blocker Is Disabled
window.open('','_self');
window.close();
}
}, 25);
以下をお試しください。
var pop = window.open("about:blank", "new_window_123", "height=150,width=150");
// Detect pop blocker
setTimeout(function() {
if(!pop || pop.closed || pop.closed == "undefined" || pop == "undefined" || parseInt(pop.innerWidth) == 0 || pop.document.documentElement.clientWidth != 150 || pop.document.documentElement.clientHeight != 150){
pop && pop.close();
alert("Popups must be enabled.");
}else{
alert("Popups is enabled.");
pop && pop.close();
}}, 1000);
以下の質問を見てください
ポップアップがChromeでブロックされているかどうかをどのように検出しますか
グーグルでそれはあなたをもっと助けます。
https://www.google.com/search?q=how+to+detect+a+blocked+popup+in+chrome
次のようにtry-catchを使用する方がはるかに効果的であることがわかりました。
var popup = window.open(winPath,winName,winFeature,true);
try {
popup.focus();
} catch (e) {
alert('popup blocked!');
}
私はこれが「解決された」ことを知っていますが、この簡単なコードはChromeで「Better Popup Blocker」拡張機能を検出するのに役立ちました:
if (!window.print) {
//display message to disable popup blocker
} else {
window.print();
}
}
オッカムのかみそり!それとも私は何かが足りないのですか?それはおそらくこれほど簡単ではありませんか?
私はこのメソッドを使用してjsからウィンドウを開き、Chromeによってブロックされていませんでした。 http://en.nisi.ro/blog/development/javascript/open-new-window-window-open-seen-chrome-popup/
以下のコードは、chrome、safari、firefoxで動作します。これにはjqueryを使用しました。
var popupWindow = window.open("http://www.google.com","directories=no,height=100,width=100");
$(document).ready(function(e) {
detectPopup();
function detectPopup() {
if(!popupWindow) {
alert("popup will be blocked");
} else {
alert("popup will be shown");
window.open('','_self');
window.close();
}
}
});