是什么导致这个简单的焦点侦听器不起作用?

发布于 2024-10-14 04:33:30 字数 279 浏览 1 评论 0原文

function appFocus() {
    write("FOCUSED"); // write on the screen
}
appWin.addEventListener("focus", appFocus, false);
// appWin is my window
  • 相同的代码适用于其他窗口,
  • 其他侦听器也适用于此窗口

,那么,为什么 focus 事件仅适用于此窗口呢?请分享您的想法。

function appFocus() {
    write("FOCUSED"); // write on the screen
}
appWin.addEventListener("focus", appFocus, false);
// appWin is my window
  • This same code works well with other windows
  • other listeners works well with this window

so, why specifically the focus event does not work with just this window? Please, share your thoughts.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生池水覆流年 2024-10-21 04:33:30

找到它:

我有一个带有“onload”的窗口,它将浏览器聚焦在窗口内。通过删除此加载,我可以让“onfocus”事件正常工作。

Found it:

I have a window with an "onload" that focus the browser within the window. By removing this onload I get the "onfocus" event to work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文