JQuery AJAX将可排序的portlet项目保存到数据库

时间:2013-05-02 03:48:09

标签: jquery ajax html portlet jquery-ui-sortable

我尝试用不同的帖子解决我的问题,但似乎没有任何效果。

我有以下代码:http://plnkr.co/edit/pcfz33lzHz4wdehjGEuQ

我想使用AJAX来保存两个portlet的顺序。我可以弄清楚如何将信息发送到数据库,但我无法弄清楚如何使用AJAX将变量发布到editsort.php

每次移动其中一个项目时都应该更新。

为了澄清代码,portlet周围有一个div,可以让你一次性移动portlet。不注意该代码,它工作正常。

1 个答案:

答案 0 :(得分:0)

您的代码似乎很好:

    $.ajax({
          type: "POST",
          url: "updatecoords.php",
          data: { x: pos_x, y: pos_y, need_id: need}
        })

它会将$_POST['x']$_POST['y']$_POST['need_id']传递给指定的网址。