7
我想設置一個鏈接,允許用戶將給定的可排序列表元素跳轉到列表頂部。我需要類似如何在jQuery UI中移動列表元素不使用鼠標,可以單獨在jQuery中排序?
$('.sortable li:last-child').move('.sortable li:first-child');
...在哪裏我可以只是導致鏈接到任何列表元素到列表的頂部。
沒關係!我找到了答案。 $(id).prependTo($('#list'));