我正在尝试在初始化可排序时绑定到over和change事件,但似乎每次我在拖动时移动鼠标都会触发它们。
$( "#sortable1, #sortable2" ).sortable({
change: function (event, ui) {
console.log("change");
},
over: function (event, ui) {
console.log("over");
},
connectWith: ".connectedSortable"
}).disableSelection();
在此示例(http://jsfiddle.net/brandonrose/7mdUN/1/)中,每次拖动鼠标时都会将“更改”和“结束”记录到控制台。