gpt4 book ai didi

jQuery UI 可排序位置

转载 作者:IT王子 更新时间:2023-10-29 03:24:18 25 4
gpt4 key购买 nike

当元素在可排序列表中的位置发生变化时,如何跟踪元素的位置?

最佳答案

您可以使用提供给事件的 ui 对象,特别是您想要 stop event , ui.item property.index() ,像这样:

$("#sortable").sortable({
stop: function(event, ui) {
alert("New position: " + ui.item.index());
}
});

You can see a working demo here ,请记住 .index() 值是从零开始的,因此您可能需要 +1 以进行显示。

关于jQuery UI 可排序位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2979643/

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