我有一些问题。我需要计算一些鼠标从mousedown
事件到像素的移动mouseup
。所以我有这个代码:
selectArea.on({
mousedown : function(e) {
select = true;
},
mousemove : function(e) {
var x2, y2, offset = $(this).offset();
x2 = e.pageX - offset.left,
y2 = e.pageY - offset.top,
width = ?,
height = ?
...
},
mouseup : function() {
select = false;
}
});
现在我需要知道我已经将鼠标从 mousedown 偏移量移动到 mouseup 偏移量有多少像素,有没有可能计算这个?非常感谢您的帮助。