0

我有这个 JQuery 功能 - 几乎可以工作(到目前为止!)但是警报是重复的,每个出现两次任何线索/想法请

$(function() {
$("#col1, #col2, #col3").sortable({
connectWith: '.column',
update : function () {
serial = $('#col1').sortable('serialize');
serial1 = $('#col2').sortable('serialize');
serial2 = $('#col3').sortable('serialize');
alert(serial);  
alert(serial1); 
alert(serial2);         
}

}); });

4

1 回答 1

2

通过将更新更改为停止来解决

$(function() {
$("#col1, #col2, #col3").sortable({
connectWith: '.column',
stop : function () {
serial = $('#col1').sortable('serialize');
serial1 = $('#col2').sortable('serialize');
serial2 = $('#col3').sortable('serialize');
alert(serial);  
alert(serial1); 
alert(serial2);         
}

}); });

于 2010-05-27T20:03:02.583 回答