如何正确地将touchstart事件转换为mousedown?

时间:2012-11-04 12:31:25

标签: javascript ios touch

我有一个基于mousedown事件的工作代码。我希望在事件代码开始时将touchstart事件转换为mousedown事件,以保留现有代码。

如何正确地将touchstart事件转换为mousedown

包含touchstart事件的示例代码:

var top = event.touches[i].pageY;

1 个答案:

答案 0 :(得分:1)

创建您自己的事件对象,然后使用该事件对象调用您为mousedown事件调用的函数。例如:

var mousedownEventFunc = function (e){
   // use the event object however
   alert(e.pageX);
};

document.getElementById('selectorID').addEventListener('touchstart', function (e){
    mousedownEventFunc({
        pageX: e.touches[0].pageX,
        pageY: e.touches[0].pageY
    });
}, false);