由window.open()url打开的窗口更改时如何触发事件

问题描述 投票:0回答:1

我正在使用window.open()方法打开一个新窗口。我想知道我打开的窗口中的网址何时重定向到其他网址,并且我想访问该网址。

var a = window.open('https://integration.api.keils.com/api/auth/login?id=2323-a921-4b80-a974-2233','sdsdsd','height = 200px,width = 200px');

以上网址将被重定向到类似“http://localhost:3001/oauth/success?id=22-a921-4b80-a974-33“。

我想知道上面的id参数,并在重定向到上面的url之后关闭窗口。

javascript dom window
1个回答
0
投票

浏览器安全模型是专门为防止这种情况而设计的。您想要的东西是不可能的(除非您正在编写浏览器扩展,但您的帖子中没有任何东西表明是这种情况)。

© www.soinside.com 2019 - 2024. All rights reserved.