HTML:
<ul id="tree">
<li id="1">test1</li>
<li id="2">test2</li>
<li id="3">test3</li>
<li id="4">test4</li>
</ul>
jQuery的:
$("#tree li").draggable().droppable({
element: '#tree',
tolerance: 'around',
aroundTop: '25%',
aroundBottom: '25%',
aroundLeft: 0,
aroundRight: 0,
drop: function(event,ui) {
id = $(this).attr("id");
alert(id);
}
});
但是掉落事件没有解雇。我没有警觉。无法找到错误。
答案 0 :(得分:1)
tolerance选项似乎不存在和around
值,当前有效值为fit
intersect
pointer
touch
,因此,如果您只是注释掉tolerance
行,那么您的小提琴就可以了。