My list is something like this
<div id="jqxTree">
<ul>
<li>Parent1
<ul>
child1
</ul>
</li>
<li>Parent2
<ul>
child2
</ul>
<ul>
child2.1
</ul>
</li>
</ul>
</div>
当我使用 jquery 可拖动它拖动整个列表时。如何我只拖动 child1,child2,child2.1 元素。概括地说,我只想在 li 内部的 ul 中拖动 li 元素。
我尝试使用下面的函数但是在鼠标悬停时 li 的元素被隐藏了
$('#jqxTree').delegate('li li', 'mouseover', function () {
$(this).draggable({
revert: true,
revertDuration: 0
});
});