Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQuery UI 中有没有办法使用设置检查拖动的可拖动元素悬停在哪个元素上tolerance?
tolerance
这不能与 droppable 一起使用。
您可以为所有元素创建悬停事件
var elem = null; $('*').hover(function() {elem = this});
或者
比这更好地为您的可拖动项目下方的元素提供一个特定的类,我假设您只想让下面的元素检测到项目是否悬停在它上面?
var elem = null; $('.Underneathdraggable').hover(function() {elem = this});
这将为您提供鼠标光标下的当前项目