admin管理员组文章数量:1344177
I'm using HTML5 drag&drop; I have a droppable div and inside it I have another droppable div.
<div id="target-parent">
<div id="target-child"></div>
</div>
The problem is that if I drag something into the target-child, fire his drop event (and this is right) but in the end fire also the target-parent event. How can the code understand that the dropped element is only target-child?
I'm using HTML5 drag&drop; I have a droppable div and inside it I have another droppable div.
<div id="target-parent">
<div id="target-child"></div>
</div>
The problem is that if I drag something into the target-child, fire his drop event (and this is right) but in the end fire also the target-parent event. How can the code understand that the dropped element is only target-child?
Share asked Jun 28, 2013 at 15:59 NicolaNicola 4752 gold badges7 silver badges20 bronze badges 01 Answer
Reset to default 13In your event handler examine the event.target
and behave appropriately and/or call event.stopPropagation()
.
本文标签: javascriptDrag amp Drop with nested target in HTML5Stack Overflow
版权声明:本文标题:javascript - Drag & Drop with nested target in HTML5 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743667696a2519008.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论