如何在“绑定”功能中使用 jQuery UI 可拖动选项?使用标准draggable()
功能不适用于我想做的事情。
谢谢!
$('a#dragthis')
.bind('dragstart', function(e) {
isDragging = true;
})
.bind('drag', function(e) {
var x = e.pageX;
var y = e.pageY;
console.log(x + "|" + y);
motivationIsWorking(x, y);
})
.bind('dragend', function(e) {
isDragging = false;
motivationStopped();
unmotivateUser();
});