我的前端有一个页面,其中包含不同的按钮,所有按钮都可以单独正常工作,但是如果我单击在chrome网站商店中打开扩展程序的按钮,然后再单击另一个按钮,则该页面不会打开。
这是我正在谈论的事的典范。如果您在未关闭要打开的标签的情况下单击按钮,则在chrome网上应用店打开后单击的按钮将无效。有人知道这是为什么以及如何解决吗?
https://html-ichr7r.stackblitz.io
这是它的代码。
<button id="button1" onclick="window.open('https://www.facebook.com/','popup','width=700,height=300');"><strong>CONTINUAR</strong></button><br>
<button id="button2" onclick="window.open('https://www.google.com/','popup','width=700,height=300');"><strong>CONTINUAR</strong></button>
<button id="button3" onclick="window.open('https://chrome.google.com/webstore/detail/dark-mode/dmghijelimhndkbmpgbldicpogfkceaj?hl=de','popup','width=700,height=300');"><strong>CONTINUAR</strong></button><br>
<button id="button4" onclick="window.open('https://www.9gag.com/','popup','width=700,height=300');"><strong>CONTINUAR</strong></button>
任何帮助表示赞赏!
编辑:我刚刚发现它可以在Firefox中使用,但仍然不知道为什么它不能在Chrome中使用。
那太奇怪了。我能想到的是chrome由于某种原因必须劫持窗口对象。如果您无法解决问题,也许应该在铬上创建工单
—
0_0