gpt4 book ai didi

javascript - 打开新标签页时检查弹出窗口拦截器是否启用

转载 作者:可可西里 更新时间:2023-11-01 02:26:46 26 4
gpt4 key购买 nike

我想在 chrome 的 new process/context 中打开新窗口,(我不确定是否可以使用 window.open 但下面的示例可以正常工作)目前如果它是常规窗口你可以检查以下示例并查看是否启用了弹出窗口阻止程序

ar newWin = window.open(url);             

if(!newWin || newWin.closed || typeof newWin.closed=='undefined')
{
//POPUP BLOCKED
}

但是我想在新进程中打开新窗口而不是像下面这样的window.open

var prod = document.getElementById("myElement"); 
var aTag = document.createElement('a');
aTag.setAttribute('href',"http://cnn.com");
//THIS TWO LINES do the job
aTag.setAttribute('rel',"noreferrer");
aTag.setAttribute('target',"_blank");
prod.appendChild(aTag);
aTag.click();
prod.removeChild(aTag);

与此引用一起使用: http://news.softpedia.com/news/Force-Google-Chrome-to-Open-Links-in-New-Processes-128962.shtml

从帖子到在新上下文中打开新标签你应该使用:

  aTag.setAttribute('rel',"noreferrer");
aTag.setAttribute('target',"_blank");

虽然这是有效的,但有时新窗口/选项卡会被弹出窗口阻止程序阻止,我只想知道这一点并在内部通知用户新窗口已被阻止,请启用它...哪个选项可以我有吗?

我的要求是这样的:

  1. Open window in new process/context
  2. if the popup blocker is blocked notify the user

如何实现?

更新

我需要它,因为当您从现有窗口单击以打开新窗口并打开第二个窗口并返回到第一个/源窗口并且您想做某事时,它被阻止了!

要模拟这个你可以创建这个简单的文件

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BlockTAB</title>
</head>

<br/>
<br/>
<button onclick="windowOpen('http://cnn.com')">window open native</button>
<br/>
<br/>
<button onclick="windowOpen('http://google.com')">sample</button>

<script>
function windowOpen(url){
window.open(url);
}

</script>
</html>

现在做下面的事情

  1. Run the program (the html file), this open the CNN tab
  2. inspect the CNN tab and put break point on it (in the source tab you can find the javascript, put it in any place you choose),until it stops(you need to refresh the page until you see the debugger stops...
  3. Now go back to the first tab were the two buttons is and you see that it is blocked, you cannot do anything like click and etc...

如何在不阻塞第一个/源标签的情况下打开新标签?

更新 2

有一种方法可以模拟弹出窗口拦截器,如果它没有发生在代码中

aTag.setAttribute('rel',"noreferrer"); aTag.setAttribute('目标',"_blank");

在前面的示例中添加以下代码

<script src="https://cdn.jsdelivr.net/bluebird/3.4.5/bluebird.js"></script>
<br/>
<br/>
<button onclick="EnabledPPB('http://cnn.com')">Blocker</button>

function delayFN(url) {
Promise.delay(500)
.then(function() {
var newWin = window.open(url);
})
}

function EnabledPPB(url) {
Promise.delay(100)
.then(function() {
delayFN(url);
})

}

最佳答案

不太确定您是要确保打开一个新窗口还是新进程,所以也许我会同时回答这两个问题。

如果您的字面意思是您想要确保 Chrome 启动一个新进程,那么在 Javascript 中无法做到这一点,即使是您使用 window.open 显示的代码也是如此。但是,由于 Chrome 正在为每个选项卡打开一个新进程,因此只要您的用户使用 Chrome,就可以安全地假设您的消息处于新进程中。另一方面,可以检查您的用户使用的浏览器。尽管您的用户可能仍然伪造用户代理(即浏览器),但它应该足以供内部使用。

More reference on Chrome using new process instead of new thread for each tab.

如果您想确保您的用户在新窗口中打开您的消息,带有 window.open 的窗口是唯一的选择。您可以通过添加事件监听器或简单地使用 HTML 中的 onclick 属性来触发 window.open。没有办法单独使用 HTML,当您已经找到使用 javascript 的方法时,没有理由去寻找答案吗?

关于javascript - 打开新标签页时检查弹出窗口拦截器是否启用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39748078/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com