如何在拖放中阻止 dragend 的默认行为?
为阻止 dragend 的默认行为,您需要检测鼠标是否在您要放置目标的放置目标上。
只有在您悬停在我的列表上时才执行此操作,listContainer.insertBefore(source, myNode);
使用 jQuery −
if ($(mylist).parent().find(":hover")) { listContainer.insertBefore(source, myNode); }
广告
为阻止 dragend 的默认行为,您需要检测鼠标是否在您要放置目标的放置目标上。
只有在您悬停在我的列表上时才执行此操作,listContainer.insertBefore(source, myNode);
使用 jQuery −
if ($(mylist).parent().find(":hover")) { listContainer.insertBefore(source, myNode); }