admin管理员组文章数量:1340295
How would I stop onclick
for an inner element from also clicking through to its parent element.
<div id="1" onclick="alert('1')">
<div id="2" onclick="alert('2')"></div>
</div>
If the second div (id="2") is visibly on top of the first, and it is clicked, You will get both alerts 1 & 2.
How can I avoid this so I only get the alert from what I'm (visibly) clicking on, Without pletely disabling any onclick function the outer div may possess.
Example: /
How would I stop onclick
for an inner element from also clicking through to its parent element.
<div id="1" onclick="alert('1')">
<div id="2" onclick="alert('2')"></div>
</div>
If the second div (id="2") is visibly on top of the first, and it is clicked, You will get both alerts 1 & 2.
How can I avoid this so I only get the alert from what I'm (visibly) clicking on, Without pletely disabling any onclick function the outer div may possess.
Example: http://jsfiddle/DPCx8/
Share Improve this question asked May 11, 2012 at 6:56 d-_-bd-_-b 23.2k43 gold badges171 silver badges285 bronze badges3 Answers
Reset to default 7var outer = document.getElementById('outer');
outer.onclick = function(event)
{
alert('outer');
event.stopPropagation();
}
var inner = document.getElementById('inner');
inner.onclick = function(event)
{
alert('inner');
event.stopPropagation();
}
http://jsfiddle/DYykA/1/
You need to stop the propagation at the child, so the event doesn't bubble up to the parent.
$("#inner").on("click", function(e){
e.stopPropagation();
});
use event.stopPropogation();
to prevent bubbling of event
本文标签: javascriptjquery onclick penetrating to parent elementStack Overflow
版权声明:本文标题:javascript - jquery onclick penetrating to parent element - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743628463a2512698.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论