偶尔,我遇到一个试图弹出新窗口的网页(用户输入或重要的东西),但弹出窗口阻止程序会阻止这种情况发生。
调用窗口可以使用哪些方法来确保新窗口正确启动?
答案 0 :(得分:138)
如果您使用JavaScript打开弹出窗口,可以使用以下内容:
var newWin = window.open(url);
if(!newWin || newWin.closed || typeof newWin.closed=='undefined')
{
//POPUP BLOCKED
}
答案 1 :(得分:36)
我尝试了上面的一些示例,但我无法让它们与Chrome一起使用。这种简单的方法似乎适用于Chrome 39,Firefox 34,Safari 5.1.7和IE 11.以下是我们JS库中的代码片段。
openPopUp: function(urlToOpen) {
var popup_window=window.open(urlToOpen,"myWindow","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=400, height=400");
try {
popup_window.focus();
} catch (e) {
alert("Pop-up Blocker is enabled! Please add this site to your exception list.");
}
}
答案 2 :(得分:31)
更新: 弹出窗口存在于古代。最初的想法是在不关闭主窗口的情况下显示另一个内容。截至目前,还有其他方法可以做到这一点:JavaScript能够发送服务器请求,因此很少使用弹出窗口。但有时他们仍然很方便。
过去邪恶的网站滥用弹出窗口很多。糟糕的页面可能会打开大量带有广告的弹出窗口。所以现在大多数浏览器都试图阻止弹出窗口并保护用户。
如果在用户触发的事件处理程序(如onclick)之外调用弹出窗口,则大多数浏览器会阻止弹出窗口。
如果你考虑一下,这有点棘手。如果代码直接在onclick处理程序中,那么这很容易。但是什么是setTimeout中打开的弹出窗口?
试试这段代码:
// open after 3 seconds
setTimeout(() => window.open('http://google.com'), 3000);
弹出窗口在Chrome中打开,但在Firefox中被阻止。
......这也适用于Firefox:
// open after 1 seconds
setTimeout(() => window.open('http://google.com'), 1000);
不同之处在于Firefox处理2000毫秒或更短的超时是可以接受的,但在它之后 - 删除了“信任”,假设现在它“在用户操作之外”。所以第一个被阻止,第二个被阻止。
当前2012年的原始答案:
此弹出窗口拦截器检查解决方案已在FF(v11)中测试过, Safari(v6),Chrome(v23.0.127.95)& IE(v7& v9)。更新 displayError函数,用于处理您认为合适的错误消息。
var popupBlockerChecker = { check: function(popup_window){ var scope = this; if (popup_window) { if(/chrome/.test(navigator.userAgent.toLowerCase())){ setTimeout(function () { scope.is_popup_blocked(scope, popup_window); },200); }else{ popup_window.onload = function () { scope.is_popup_blocked(scope, popup_window); }; } } else { scope.displayError(); } }, is_popup_blocked: function(scope, popup_window){ if ((popup_window.innerHeight > 0)==false){ scope.displayError(); } }, displayError: function(){ alert("Popup Blocker is enabled! Please add this site to your exception list."); } };
用法:
var popup = window.open("http://www.google.ca", '_blank'); popupBlockerChecker.check(popup);
希望这有帮助! :)
答案 3 :(得分:11)
无论浏览器公司或版本如何始终工作的一个“解决方案”是简单地在屏幕上放置一条警告消息,靠近控件的某个地方,这将创建一个弹出窗口,礼貌地警告用户该操作需要弹出窗口并请为该站点启用它们。
我知道它不是花哨或任何东西,但它不能变得更简单,只需要大约5分钟的测试,然后你可以继续做其他的噩梦。
一旦用户允许您的网站弹出窗口,如果您不过度弹出窗口,也会考虑周到。你要做的最后一件事是惹恼你的访客。
答案 4 :(得分:0)
我已经尝试了很多解决方案,但是我能想出的唯一一个与uBlock Origin一起使用的解决方案是利用超时来检查弹出窗口的关闭状态。
function popup (url, width, height) {
const left = (window.screen.width / 2) - (width / 2)
const top = (window.screen.height / 2) - (height / 2)
let opener = window.open(url, '', `menubar=no, toolbar=no, status=no, resizable=yes, scrollbars=yes, width=${width},height=${height},top=${top},left=${left}`)
window.setTimeout(() => {
if (!opener || opener.closed || typeof opener.closed === 'undefined') {
console.log('Not allowed...') // Do something here.
}
}, 1000)
}
显然这是一个黑客;像这个问题的所有解决方案。
您需要在setTimeout中提供足够的时间来考虑初始开启和关闭,因此它永远不会完全准确。这将是一个反复试验的位置。
将此添加到您的尝试列表中。
答案 5 :(得分:0)
通过使用onbeforeunload事件我们可以检查如下
function popup()
{
var chk=false;
var win1=window.open();
win1.onbeforeunload=()=>{
var win2=window.open();
win2.onbeforeunload=()=>{
chk=true;
};
win2.close();
};
win1.close();
return chk;
}
它将在后台打开2个黑色窗口
该函数返回布尔值。
答案 6 :(得分:0)
我结合了@Kevin B和@DanielB的解决方案。
这要简单得多。
$name = $_GET['name'];
$stmt = $pdo->prepare("SELECT `st_id`, `st_name` FROM `students` WHERE st_name LIKE :name or st_phone LIKE :phone AND atd_year = :year");
$param = array(':name' => "%$name%", ':phone' => "%$name%", ':year' => $_GET['yid']);
$stmt-> execute($param);
用法:
var isPopupBlockerActivated = function(popupWindow) {
if (popupWindow) {
if (/chrome/.test(navigator.userAgent.toLowerCase())) {
try {
popupWindow.focus();
} catch (e) {
return true;
}
} else {
popupWindow.onload = function() {
return (popupWindow.innerHeight > 0) === false;
};
}
} else {
return true;
}
return false;
};
答案 7 :(得分:0)
如果您还拥有子代码,一个简单的方法就是在其html中创建一个简单的变量,如下所示:
<script>
var magicNumber = 49;
</script>
然后从父级检查其存在,类似于以下内容:
// Create the window with login URL.
let openedWindow = window.open(URL_HERE);
// Check this magic number after some time, if it exists then your window exists
setTimeout(() => {
if (openedWindow["magicNumber"] !== 32) {
console.error("Window open was blocked");
}
}, 1500);
我们等待一段时间以确保该网页已加载,并检查其存在。
显然,如果窗口在1500毫秒后仍未加载,则该变量仍为undefined
。