我有这个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);
}
}); });
答案 0 :(得分: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);
}
}); });