如何在 jQuery 中防止通过子 div 到父 div 的 click() 事件?
情况:
<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 是一个带有 jQuery 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要阻止事件在 DOM 树上传播:
You need to stop the event from propagating up the DOM tree:
这应该可以解决问题,所以每次你点击关闭它都不会影响你的标题div,
that should do the trick, so everytime you click on close it will not affect your header div,
为什么不使用
而不是父 div。否则从内部 div 点击处理程序返回 false 或 stopPropagation
Why not hook open event with
<div style="float: left;" class="headerTitle">+ OPEN</div>
instead of parent div. Otherwisereturn false
orstopPropagation
from inner div click handler