0
我有一個html表格。用戶通過拖放對行進行排序。在排序滾動不起作用。jquery ui可排序,滾動不起作用
$("#commands tbody").sortable({
scroll: true,
helper: fixHelperModified,
stop: updateIndex
});
我有一個html表格。用戶通過拖放對行進行排序。在排序滾動不起作用。jquery ui可排序,滾動不起作用
$("#commands tbody").sortable({
scroll: true,
helper: fixHelperModified,
stop: updateIndex
});
所有您需要做的就是添加overflow: auto;
到父(UL,#element,whatever_you_call_it),它應該工作。這可以確保即使文檔稍微改變高度,在調整大小時,overflow auto也會保留元素的高度。