Jquery 可排序连接列表 + PHP/MySQL

发布于 2024-10-28 23:59:52 字数 490 浏览 4 评论 0原文

我一直在到处寻找解决方案,但没有运气。

我正在寻找的方法是合并此处找到的示例 http://jqueryui.com/使用 PHP/MySQL 演示/sortable/#connect-lists

有几个示例仅适用于一个列表,即 http://www.wil-linssen.com/musings/entry/extending-the-jquery-sortable-with-ajax-mysql/

但我还没有找到一个例子多个列表。

有人有解决方案或有效示例的链接吗?

谢谢! /大卫

I've been searching everywhere for a solution without luck.

What I'm searching for i a way to merge the example found here http://jqueryui.com/demos/sortable/#connect-lists with PHP/MySQL.

There are several examples out there that works with just the one list i.e. http://www.wil-linssen.com/musings/entry/extending-the-jquery-sortable-with-ajax-mysql/

But I haven't found a single example with multiple lists.

Does anyone have ha solution or a link to an example that works?

Thanks!
/David

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

简单气质女生网名 2024-11-04 23:59:52

添加回调(从文档中获取和扩展的示例):

$( "#sortable1, #sortable2" ).sortable({
    connectWith: ".connectedSortable",
    update : function(event, ui) {
        //ui.sender is the list the item comes from
        //ui.item is the current item that moved
        //ui.position is the current position
    }

}).disableSelection();

现在使用 ui 参数在回调中执行您想要的任何 ajaxy 操作。

Add a callback (example taken & extended from the docs):

$( "#sortable1, #sortable2" ).sortable({
    connectWith: ".connectedSortable",
    update : function(event, ui) {
        //ui.sender is the list the item comes from
        //ui.item is the current item that moved
        //ui.position is the current position
    }

}).disableSelection();

Now do any ajaxy thing you want in the callback using the ui paremeter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文