gpt4 book ai didi

javascript - Jquery UI Sortable - 子元素移动父项

转载 作者:行者123 更新时间:2023-11-30 17:36:06 25 4
gpt4 key购买 nike

我有以下 html:

<div class="wrapper">
<div class="box">
<div class="box__title">
<div class="box__move">move</div>
</div>
<div class="box__description">
</div>
</div>
<div class="box">
<div class="box__title">
<div class="box__move">move</div>
</div>
<div class="box__description">
</div>
</div>
</div>

我希望“box__move”成为在“包装器”中移动“盒子”项目的触发器。

我希望像下面这样的东西可以工作,但没有。所以,想知道是否真的有办法做到这一点。

$('.box__move').sortable({
axis: 'y',
items: 'parent .box'
});

任何人都可以提供帮助,或者这是不可能的?

最佳答案

尝试:

$('.wrapper').sortable({
axis: 'y',
handle: '.box__move'
});

关于javascript - Jquery UI Sortable - 子元素移动父项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22015978/

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