gpt4 book ai didi

JQuery UI Sortable 接收前禁用更新功能

转载 作者:行者123 更新时间:2023-12-03 22:29:43 25 4
gpt4 key购买 nike

我正在使用 jquery ui 处理一个列表,您可以在其中排序,然后也在另一个列表之间排序。我正在使用更新进行内部排序,效果很好。当我在两者之间排序时,我只想调用接收函数而不是更新。目前,更新被调用,然后接收被调用。在列表之间排序时有什么方法可以跳过更新调用吗?

<script>
$ = jQuery
$(function() {
$( "#sortable1).sortable({
connectWith: ".connectedSortable",
placeholder: "ui-state-highlight",
update: function(event, ui) {processSortWithin(ui.item.attr("id"), ui.item.index()); },
receive: function(event, ui){
processSortBetween(ui.item.attr("id"), ui.item.index(),ui.sender.attr("id"));
}
}).disableSelection();
});

</script>

最佳答案

回复:http://forum.jquery.com/topic/sortables-update-callback-and-connectwith

update: function(e,ui) {
if (this === ui.item.parent()[0]) {
//your code here
}
}

关于JQuery UI Sortable 接收前禁用更新功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5586558/

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