如何在 jQuery 中防止通过子 div 到父 div 的 click() 事件?

发布于 2024-12-11 00:51:09 字数 709 浏览 0 评论 0原文

情况:

<div class="header">
    <div style="float: left;" class="headerTitle">+ OPEN</div>
    <div class="closeBtn" style="float: right;">- CLOSE</div>
 </div> 
<div class="touristenContent">.....</div>

视觉上:

|+Open..............................|-Close|..| (header)

|............Content..........................|

Header DIV 是一个带有 jQ​​uery click() 事件的“大按钮”,用于打开内容。 关闭 DIV 位于大标题 DIV 内,代表关闭按钮,还带有 click() 事件来关闭内容。 此关闭按钮仅通过单击大标题可见。

单击标题并打开内容按预期工作,但单击关闭按钮让单击事件传递到标题 DIV。由于两次单击事件,内容关闭并再次打开。

那么我如何正确设计整个事情以使关闭按钮固定并防止点击它到标题?

Situation:

<div class="header">
    <div style="float: left;" class="headerTitle">+ OPEN</div>
    <div class="closeBtn" style="float: right;">- CLOSE</div>
 </div> 
<div class="touristenContent">.....</div>

Visually:

|+Open..............................|-Close|..| (header)

|............Content..........................|

Header DIV is a 'big button' with jQuery click() event for opening the content.
The close DIV is inside the big header DIV and represents the close button also with click() event to close the content.
This close button is only visible by clicking on the big header.

Clickng on the header and oppening the content works as expecting but clicking on the close button let the click event through to the header DIV. The content closes and opens again beacause of two click events.

So how can i design the whole thing properly to make the close button solid and to prevent click through it to the header?

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

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

发布评论

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

评论(3

青衫负雪 2024-12-18 00:51:09

您需要阻止事件在 DOM 树上传播

$('.closeBtn').click(function (evt) {
    evt.stopPropagation();

    // Your code here
});

You need to stop the event from propagating up the DOM tree:

$('.closeBtn').click(function (evt) {
    evt.stopPropagation();

    // Your code here
});
烟花易冷人易散 2024-12-18 00:51:09
$('.closeBtn').click(function (event){
   event.stopPropagation();
   //   ... your code here
   return false;
});

这应该可以解决问题,所以每次你点击关闭它都不会影响你的标题div,

$('.closeBtn').click(function (event){
   event.stopPropagation();
   //   ... your code here
   return false;
});

that should do the trick, so everytime you click on close it will not affect your header div,

轻许诺言 2024-12-18 00:51:09

为什么不使用

+ OPEN

而不是父 div。否则从内部 div 点击处理程序返回 false 或 stopPropagation

Why not hook open event with <div style="float: left;" class="headerTitle">+ OPEN</div> instead of parent div. Otherwise return false or stopPropagation from inner div click handler

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