我有一个页面,其中有多个表,并且动态添加了其他表。我想应用.Sortable jquery选项,以便用户可以更改表行的顺序。我有其他页面页面,其中我有固定数量的表或订单列表,其中我已应用拖放可排序选项,用户可以通过此类代码订购项目。
$("[id*=AuthorGird]").sortable({
items: 'tr:not(tr:first-child)',
cursor: 'pointer',
axis: 'y',
dropOnEmpty: false,
});
或像这样有固定数字
$("#sortableKeyword1,#sortableKeyword2,#sortableKeyword3,#sortableKeyword4").sortable({
......
});
现在对于这个页面我动态添加表格,我想在所有表格上添加可排序。我尝试过,但似乎没有任何工作。请引导我找到正确的路径。
$("[type=table]").sortable({
items: 'tr:not(tr:first-child)',
cursor: 'pointer',
axis: 'y'
})
$("input[type=table]").sortable({
如何在一个页面上的所有类型的表格上应用sortable?