我有一个基于mousedown
事件的工作代码。我希望在事件代码开始时将touchstart
事件转换为mousedown
事件,以保留现有代码。
如何正确地将touchstart
事件转换为mousedown
?
包含touchstart
事件的示例代码:
var top = event.touches[i].pageY;
答案 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);