如何检测带有外部内容的 iframe 上的 onmousedown?

发布于 2024-11-16 20:02:22 字数 247 浏览 1 评论 0原文

我试图知道用户何时单击包含外部内容的 iframe(不属于我的页面)。我需要这样做的原因是我的网站严重依赖键盘导航,当 iframe 聚焦时,我需要告诉用户单击外部以继续播放。

我在 iframe 顶部使用透明 div 并执行 onmousedown 事件。但这不是一个很好的选择,因为用户需要单击一次以使 div 消失,然后再次单击 iframe 上他们想要的任何位置。

还有其他方法可以知道用户何时点击 iframe 吗?

谢谢

I'm trying to know when an user clicks on an iframe with external content (a page not owned by me). The reason I need to do it is that my site relies heavily on keyboard navigation and when the iframe is focused I need to tell users to click outside to keep playing.

I'm using a transparent div on on top of the iframe with an onmousedown event. But it's not a great choice since the user needs to click once for the div to disappear and once again to click wherever they want on the iframe.

Are there are other ways to know when the user clicks on the iframe?

Thanks

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

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

发布评论

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

评论(3

余厌 2024-11-23 20:02:22

我能想到的最接近的方法是聆听窗户上的模糊情况。

http://www.quirksmode.org/dom/events/blurfocus.html

The closest I can think of is to listen for blur on your window.

http://www.quirksmode.org/dom/events/blurfocus.html

后来的我们 2024-11-23 20:02:22

我会在 iframe 而不是 div 上放置 onmousedown 事件吗?

I would put an onmousedown event on the iframe instead of the div?

灯角 2024-11-23 20:02:22

你可以找到解决这个问题的方法。但就我个人而言,我认为从外部容器捕获 IFrame 中的事件并不是一个好的做法。

you could find a way around this problem. But personally, I don't think its a good practice to capture events in an IFrame from an External Container.

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