如何检测带有外部内容的 iframe 上的 onmousedown?
我试图知道用户何时单击包含外部内容的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我能想到的最接近的方法是聆听窗户上的模糊情况。
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
我会在 iframe 而不是 div 上放置 onmousedown 事件吗?
I would put an onmousedown event on the iframe instead of the div?
你可以找到解决这个问题的方法。但就我个人而言,我认为从外部容器捕获 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.