试试这段代码:
$(function() {
$( ".sortable" ).disableSelection();
$( ".sortable" ).sortable({
stop : function(event, ui){
reparaZindex();
alert("bananas eat children");
}
});
});
如果您收到警报但您的功能不起作用,则意味着您的 reparaZindex() 做错了。
$(function()
{
$( ".sortable" ).disableSelection();
$( ".sortable" ).sortable({
start: function(event, ui) {
var start_pos = ui.item.index();
ui.item.data('start_pos', start_pos);
},
update: function (event, ui) {
var start_pos = ui.item.data('start_pos');
var end_pos = ui.item.index();
var eroare=0;
//incepe trimiterea la bd a indexurilor
for(var i=0;i<ui.item.parent().children().length;i++){
if(1==0) //eroare
eroare=1;
var x =ui.item.parent().children()[i];
//$(x).find('img').css('z-index',500-i);
y=$(x).children()[0];
y.style.zIndex=500-i*2;
if($(x).children().length>1){
c=$(x).children()[1];
TEMP=500-i*2+1;
c.style.zIndex=TEMP;
//alert(TEMP);
//alert($(x).children()[1].id)
}
}
if(eroare==0)//daca bd a upatat indexurile pt start_pos la eng pos
{
var copii=ui.item.parent().children();
for(var i=0;i<ui.item.parent().children().length;i++){
//alert(ui.item.parent().children().eq(i).id())
}
}
else {
}
},
stop: function(event, ui) { $.each($(".sortable > li"), function() {alert("!!!"+$(this).attr("id"));}); }
});
});