jQuery click() 事件包罗万象?

发布于 2024-09-24 04:46:23 字数 133 浏览 8 评论 0原文

我们在屏幕上显示一个框,当用户单击屏幕上的任何位置(包括正文、锚点、div、按钮等)时,我想隐藏该框...是否有一个选择器可以为我处理这个问题?或者是 $('body, a, div, input').click() 的情况?

we're showing a box on the screen that I want to hide when the user clicks anywhere on the screen, including body, anchors, divs, buttons, etc... Is there a selector that can handle this for me? Or is it a case of $('body, a, div, input').click()?

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

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

发布评论

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

评论(2

等风来 2024-10-01 04:46:23

您可以这样做:

$(document).click(function() {
  $("#boxID").hide();
});

因为默认情况下,click 事件将 冒泡文档,这是一种“捕获所有”方法...如果您不希望从框内点击来关闭它,请添加对这些的 .stopPropagation() 调用 em> click 事件如下:

$("#boxID").click(function(e) {
  e.stopPropagation();
});

You can do it like this:

$(document).click(function() {
  $("#boxID").hide();
});

Since the click events will, by default, bubble up to document, this is a "catch all" approach...if you don't want clicks from inside the box to close it, add a .stopPropagation() call on those click events like this:

$("#boxID").click(function(e) {
  e.stopPropagation();
});
执笏见 2024-10-01 04:46:23

您只需绑定到文档元素的单击事件即可。请在 http://jsfiddle.net/ZqEbY/ 尝试。

You can just bind to the click event of document element. Try it at http://jsfiddle.net/ZqEbY/.

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