1
當鼠標被釋放並且revert
設置爲true時,如何抓取元素的位置。鼠標釋放時的抓取元素位置jQuery可拖動
$("#belt").draggable({
handle: "li",
revert: true,
axis: "y",
delay: 150,
topValue: null,
leftValue: null,
start: function() {
this.topValue = $(this).position().top;
this.leftValue = $(this).position().left;
},
stop: function(){
console.log($(this).position().top);
console.log($(this).position().left;
}
});