gpt4 book ai didi

jquery-ui - jQuery UI Sortable - 如何包含/排除多个 "items"?

转载 作者:行者123 更新时间:2023-12-02 23:04:37 24 4
gpt4 key购买 nike

我有一个 jQuery UI Sortable 函数的工作示例。我将其应用到 HTML 表格中以拖放表格行并对表格行进行排序。它工作得很好,除了我想排除某些类别的行进行排序。使用items参数,我可以成功排除一个类("list-button-bar"类),但我一生都无法弄清楚如何排除多个类的语法。例如,我想排除 <th>和其他类别的<tr> .

这可能是文档中的内容之一,但我对 jQuery UI 还不够熟悉,甚至不知道要搜索什么。

这是工作代码:

<script>
$(function() {
$("#applications_list tbody.list-tbody").sortable({
items: "tr:not(.list-button-bar)",
cursor: 'crosshair'
});
$("#applications_list tbody.list-tbody").disableSelection();

});
</script>

最佳答案

您尝试过使用逗号吗? items 选项采用 jQuery 选择器:

  $("#applications_list tbody.list-tbody").sortable({
items: "tr:not(.list-button-bar), :not(th)", // Excludes <tr>s without a class and <th>s
cursor: 'crosshair'
});

关于jquery-ui - jQuery UI Sortable - 如何包含/排除多个 "items"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5995494/

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