Jqueryui 可排序列表与 ajax 更新
我正在使用 CodeIgniter 和 jQuery UI Sortable 小部件来更改我的菜单列表位置。
例如,如果我的菜单列表是这样的:
<li>menu 1</li>
<li>menu 2</li>
<li>menu 3</li>
<li>menu 4</li>
我想将第一个菜单放在第二个菜单下面并让它保留在那里。
然而我对 jQuery 有点卡住了。
这就是获取列表元素:
<ul id="sortable">
<?php foreach ($rows as $r)
{
echo '
<li id="sort_'.$r->pid.'" class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>
' . $r->page_name . '
</li>';
}
?>
</ul>
和jquery:
$( "#sortable" ).sortable({
placeholder: "ui-state-highlight",
opacity: 0.6,
update: function(event, ui) {
var info = $(this).sortable("serialize");
alert(info);
}
});
$( "#sortable" ).disableSelection();
我设法向数组发出结果警报。
现在我不想让任何人为我写这个,只是提示如何使用 ajax 来更新。
I am using CodeIgniter with the jQuery UI Sortable widget, to change my menu list position.
For example, if my menu list is like this:
<li>menu 1</li>
<li>menu 2</li>
<li>menu 3</li>
<li>menu 4</li>
I want to place the first menu under the second and have it stay there.
However I am stuck on the jQuery a bit.
This is what gets the list elements:
<ul id="sortable">
<?php foreach ($rows as $r)
{
echo '
<li id="sort_'.$r->pid.'" class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>
' . $r->page_name . '
</li>';
}
?>
</ul>
and the jquery:
$( "#sortable" ).sortable({
placeholder: "ui-state-highlight",
opacity: 0.6,
update: function(event, ui) {
var info = $(this).sortable("serialize");
alert(info);
}
});
$( "#sortable" ).disableSelection();
I managed to alert the array of the results.
Now I don't want anybody to write this for me, just a hint on how to use ajax with this for the update.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以在更新方法中使用 $.ajax(..) 。
http://api.jquery.com/jQuery.ajax/
我只是检查信息已经序列化,所以这应该有效。您可以根据提交类型(post、get)添加
method
属性。I think you can use $.ajax(..) inside your update method.
http://api.jquery.com/jQuery.ajax/
I just check info is already serialized, so this should work. You can add
method
property depending on submit type (post, get).首先感谢卡米尔·拉赫(Kamil Lach)的提示,我设法做到了
这是我的代码也许有人会利用它
在我的控制器中创建一个函数并将模型加载到其中
模型
中$p可用是空头头寸id 是菜单 id
和 jquery
我将 url 传递给我的控制器函数,在其中加载我的更新模型
和视图文件
再次感谢您的提示 Kamil Lach
First of all thanks for Kamil Lach for his hint, i managed to do it
Here is my code maybe someone wull make a use for it
created a function in my controller and loaded the model in it
the model
the $p vaiable is the short position and the id is the menu id
and the jquery
i passed the url to my controller function where my update model is loaded
and the view file
And thanks again for your hint Kamil Lach