z-index 和 Javascript 事件

发布于 2024-08-15 16:39:29 字数 213 浏览 6 评论 0原文

我有几个彼此重叠的 div,具有不同的 z-index 值。

浏览器的默认行为似乎是触发绑定到最顶部 z-index div 的事件。即,每个 div 都有多个 onclick ,但当单击该区域时,只有顶部的一个被触发。

有没有一种方法可以触发附加到所有 div 的事件,无论每个 div 的 z 索引是什么,只要操作“超过”该 div 而不考虑 z 索引?

I have a couple of divs overlaid on each other with differing z-index values.

The default behaviour for browsers seems to be the event bound to the top-most z-index div gets fired. I.e. I have multiple onclicks one for each div but only the top one is fired when the area is clicked.

Is there a way to fire the events attached to all divs no matter what the z-index of each is, so long as the action is 'over' that div without regard to z-index?

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

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

发布评论

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

评论(2

别忘他 2024-08-22 16:39:29

该事件实际上不会发生在被另一个元素遮挡的元素上,除非另一个元素包含在第一个元素中,然后它会冒泡。我能想到的实现您想要的效果的唯一方法是遍历所有潜在元素,看看其中是否有任何元素包含单击发生的点并触发对该元素的单击(如果它不是当前元素) )。

The event doesn't actually occur on the element that is obscured by another unless the other element is contained in the first, then it will bubble up. The only way that I can think of to achieve what you want is to go through all of the potential elements and see if any of them contain the point at which the click occurred and trigger a click on that element (if it's not the current one).

又爬满兰若 2024-08-22 16:39:29

如果您使用的是 javaScript 框架,则可能会包含事件冒泡。 (我确信 ExtJS 具有这种事件功能。)

If you are using an javaScript framework event bubbling might be included. (ExtJS I know for sure has this kind of event feature.)

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