使用 jQuery UI 进行一些拖放。我将不得不告诉项目是否被放到了 div 之外,所以我需要停止鼠标的位置,但它并没有像我希望的那样工作。
这是我到目前为止所拥有的:
function getMouseXY() {
var tempX, tempY;
document.onmouseup = getMouseXY;
function getMouseXY(e) {
tempX = e.pageX
tempY = e.pageY
console.log("last xy: " + [tempX, tempY]);
return [tempY, tempX];
}
}
var currentMousePosition = [];
$(".mcCirc").each(function(index){
$(this).draggable({
revert: "invalid",
stop: function( event, ui) {
currentMousePosition = getMouseXY();
}
});
});