我只想在 4-5 秒后调用 OVER 功能块, 我按住拖动的项目几秒钟,然后需要调用 OVER 功能块,否则不
$('.treeLink').droppable({
tolerance: 'pointer',
accept: '.childLinks',
over: function() {},
over: function() {
getTreeLinks($(this).attr('id').split("treeLink")[1]);
},
drop: function() {
updateGovLinks($(this).attr('id'));
}
});