save jquery ui-sortable positions to DB

前端 未结 4 590
北恋
北恋 2020-12-24 00:53

Im trying to replicate the functionality of this page (http://www.kissfm.ro/fresh-top-40/) for a friend who has a small web radio. The site is setup in wordpress fyi.

<
4条回答
  •  梦毁少年i
    2020-12-24 01:30

    make your HTML sortable, add javascript, and save to php on update.

    • elem 1
    • elem 2
    • elem 3
    • elem 4
    $(document).ready(function(){ $('#sortable').sortable({ update: function(event, ui) { var newOrder = $(this).sortable('toArray').toString(); $.get('saveSortable.php', {order:newOrder}); } }); });

提交回复
热议问题