SortableJS - 禁用条件排序

SortableJS - Disable sort on a condition

提问人:H D Dang 提问时间:8/11/2023 更新时间:8/11/2023 访问量:35

问:

我正在使用 sortable.js 来制作可排序的列表。

我想在满足条件时禁用排序。

id 怎么能做到这一点?

这是我尝试过的;

var sortableRequest = Sortable.create(document.getElementById('sortRequest'), { animation: 150, sort: true, group: "sorting" });
if (stringvar == "stopsorting"){
    sortableRequest = Sortable.create(document.getElementById('sortRequest'), { animation: 150, sort: false, group: { name: 'sorting', put: false});
}
可排序的JS

评论


答: 暂无答案