jQuery UI可排序:确定项目的顺序
问题描述:
Here是JavaScript的一个有趣用法:使用拖放对项目进行重新排序。我的页面中的实现本身工作正常,但有没有办法确定用户放置项目的顺序?jQuery UI可排序:确定项目的顺序
我在问,因为我想加载并将项目顺序保存在cookie中。
答
更新2012年
获得元素的索引位置尝试读取这个:
:的jQuery插件COOKIE
JQUERY:
$(function() {
//coockie name
var LI_POSITION = 'li_position';
$('ul#sortable').sortable({
//observe the update event...
update: function(event, ui) {
//create the array that hold the positions...
var order = [];
//loop trought each li...
$('#sortable li').each(function(e) {
//add each li position to the array...
// the +1 is for make it start from 1 instead of 0
order.push($(this).attr('id') + '=' + ($(this).index() + 1));
});
// join the array as single variable...
var positions = order.join(';')
//use the variable as you need!
alert(positions);
// $.cookie(LI_POSITION , positions , { expires: 10 });
}
});
});
HTML:
<ul id="sortable">
<li id="id_1"> Item 1 </li>
<li id="id_2"> Item 2 </li>
<li id="id_3"> Item 3 </li>
<li id="id_4"> Item 4 </li>
<li id="id_5"> Item 5 </li>
</ul>
PHP:
这只是一个例子,但你有这个想法:你可能想使用数据库,并使用AJAX获取回复:
<?php
//check if cookie is set..
if (isset($_COOKIE['li_position'])) {
//explode the cockie by ";"...
$lis = explode(';' , $_COOKIE['li_position']);
// loop for each "id_#=#" ...
foreach ($lis as $key => $val) {
//explode each value found by "="...
$pos = explode('=' , $val);
//format the result into li...
$li .= '<li id="'.$pos[0].'" >'.$pos[1].'</li>';
}
//display it
echo $li;
// use this for delete the cookie!
// setcookie('li_position' , null);
} else {
// no cookie available display default set of lis
echo '
<li id="id_1"> Fuji </li>
<li id="id_2"> Golden </li>
<li id="id_3"> Gala </li>
<li id="id_4"> William </li>
<li id="id_5"> Jordan </li>
';
}
?>
答
HTML
<ul id="sortable">
<li id="id1"> Item 1 </li>
<li id="id2"> Item 2 </li>
<li id="id3"> Item 3 </li>
<li id="id4"> Item 4 </li>
<li id="id5"> Item 5 </li>
</ul>
JQUERY
$("#sortable").sortable(
{
update: function() {
var strItems = "";
$("#sortable").children().each(function (i) {
var li = $(this);
strItems += li.attr("id") + ':' + i + ',';
});
updateSortOrderJS(strItems); <--- do something with this data
}
});
strItems的样子(新项目订单:项目-ID)
0,49:1,365:2,50:3,364:4,366:5,39:6
然后哟ü可以解析成一个更新的功能类似
List eachTask = new List(itemsList.Trim().Split(new char[] { ',' }));
然后
String[] item = i.Split(new Char[] { ':' });
答
这是我目前使用:
<div id="sortable">
<div id="2000"></div>
<div id="1000"></div>
<div id="3000"></div>
</div>
$('#sortable').sortable({
update: function() { save_new_order() }
});
function save_new_order() {
var a = [];
$('#sortable').children().each(function (i) {
a.push($(this).attr('id') + ':' + i);
});
var s = a.join(',');
alert(s);
}
惊动值:
2000:0,1000:1,3000:2
答
我已经使用下面的代码来获取项目的顺序。
的Html
<div id="sortable">
<div >1</div>
<div >2</div>
<div >3</div>
<div >4</div>
<div >5</div>
<div >6</div>
</div>
JQuery的
$(document).ready(function(){
$("#sortable").sortable({
stop : function(event, ui){
$('#sortable > div').each(function(){
alert($(this).html());
});
}
});
$("#sortable").disableSelection();
});
您可以调出一个有趣的堆栈溢出线程。我认为序列化方法可能会让我到需要去的地方,但我不能把它们放在一起。 – Pieter 2010-04-19 17:30:27
新更新!让我知道! – 2010-04-19 18:51:24
太棒了!这留下了最后一个问题:当我重新加载页面时,如何让li以正确的顺序出现?我可以用PHP检索这个cookie吗? – Pieter 2010-04-22 11:13:46