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()
.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743667697a4487254.html
评论列表(0条)