重置触摸事件的事件处理程序

时间:2012-03-31 03:55:50

标签: navigation touch ontouchevent

我在我的网站www.philipmadeley.com上遇到导航中“触摸”事件的问题。它似乎处理第一个“触摸”确定,但然后其余部分不起作用。我厌倦了几种解决方案,但我不是那种技术,所以我想我可能忽略了一些东西......无论如何我似乎无法找到答案。希望你能帮忙。

1 个答案:

答案 0 :(得分:0)

使用event.originalEvent.touches或event.orignialEvent.changedTouches

并使用实例0

$("#div").bind("touchstart",function(event){

     event.preventDefault();            
     var touches = event.originalEvent.touches || event.originalEvent.changedTouches;
    if(touches.length == 1){

var touch = touches[0];

// Place element where the finger is horizontally
tx = touch.pageX ;

警报(TX); }});