我试图让jQuery拖放与iPad touch事件很好地协同工作。我在网上找到了这段代码:
function touchHandler(event)
{
var touches = event.changedTouches,
first = touches[0],
type = "";
switch (event.type)
{
case "touchstart": type = "mousedown"; break;
case "touchmove": type = "mousemove"; break;
case "touchend": type = "mouseup"; break;
default: return;
}
//initMouseEvent(type, canBubble, cancelable, view, clickCount,
// screenX, screenY, clientX, clientY, ctrlKey,
// altKey, shiftKey, metaKey, button, relatedTarget);
var simulatedEvent = document.createEvent("MouseEvent");
simulatedEvent.initMouseEvent(type, true, true, window, 1,
first.screenX, first.screenY,
first.clientX, first.clientY, false,
false, false, false, 0/*left*/, null);
first.target.dispatchEvent(simulatedEvent);
event.preventDefault();
}
如果我将touchHandler附加到document
touchstart / move / end,它似乎工作正常,但是不允许在iPad上进行原生缩放/滚动,所以我试图将此处理程序附加到拖拉机本身。
我看到的问题是event.changeTouches
由于某种原因总是未定义,正如您在http://jsfiddle.net/myLj2/1/中可见的那样。我无法想出触摸事件将始终具有未定义的changeTouches
属性的原因,并且因此,此代码将无法工作。有什么想法吗?
答案 0 :(得分:9)
在发现Does jQuery preserve touch events properties?后我发现了它。
事实证明,jQuery事件不会复制changeTouches
属性,因此您必须使用jQuery的originalEvent
属性或一起跳过jQuery并使用{{1}之类的函数绑定}}