gpt4 book ai didi

jquery - 如何使用 jquery ui Draggable 仅拖动嵌套 ul 标签内的子元素

转载 作者:行者123 更新时间:2023-12-01 03:13:36 25 4
gpt4 key购买 nike

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>

我尝试使用下面的函数,但是当鼠标悬停在 li 的元素上时,元素被隐藏

$('#jqxTree').delegate('li li', 'mouseover', function () {
$(this).draggable({
revert: true,
revertDuration: 0
});
});

最佳答案

根据 jQuery API 页面:

As of jQuery 1.7, .delegate() has been superseded by the .on() method.

Fiddle Demo

jQuery:

$(function () {
$('#jqxTree').on('mouseenter mouseover', 'li > ul', function () {
$(this).draggable({
revert: true,
revertDuration: 0
});

});
});

在 CSS 中,在父元素和子元素之间使用 >

此外,您还使用了 li li 而不是 li ul

关于jquery - 如何使用 jquery ui Draggable 仅拖动嵌套 ul 标签内的子元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20834533/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com