如何将 jquery 事件仅附加到外部 div?

发布于 2024-10-19 07:06:50 字数 266 浏览 3 评论 0原文

我正在开发一个 jQuery 灯箱。它工作得很好,但我想添加另一个功能:我希望当单击周围的“调光器”div 时关闭该框,而不是在单击主 div 时关闭该框。

为了澄清,我有两个 div:div A 和 div B。Div A 有一个半透明的背景图像,并覆盖整个屏幕(它是绝对定位的)。 Div B 较小,位于 div A 内部(也是绝对定位),并且具有灯箱的主要内容。是否可以将点击事件附加到 div A(外部),如果点击 div B(内部),该事件不会触发?

谢谢!

I'm working on a jQuery light box. It works great, but I'd like to add another feature: I'd like the box to close when the surrounding, "dimmer", div is clicked, but not when the main one is.

To clarify, I have two divs: div A and div B. Div A has a semi-transparent background image, and covers the entire screen (it is absolutely positioned). Div B is smaller, and inside of div A (also absolutely positioned) and has the main content of the light box. Is it possible to attach a click event to div A (outer) that does not fire if div B (the inner one) is clicked?

Thanks!

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

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

发布评论

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

评论(2

霞映澄塘 2024-10-26 07:06:50

实现这一目标的最佳方法是......

$('#your-light-box').click(function(event) {
   event.stopPropagation();
});

$(document).click(function() {
  closeLightbox();
});

The best way to achieve that is...

$('#your-light-box').click(function(event) {
   event.stopPropagation();
});

$(document).click(function() {
  closeLightbox();
});
今天小雨转甜 2024-10-26 07:06:50

div B 的点击事件中,返回 false。这将确保事件不会冒泡并触发父元素(div A)的单击

即使您没有在单击 Div B 时执行任何操作,也只需返回 false

$("#divB").click(function(){
    return false;
});

In the click event of div B, return false. This will ensure the event does not bubble and trigger the click of the parent elements (div A)

Even if you are not doing anything on click of Div B, just return false

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