'touchstart'事件是否与e.PageX位置等效?


104

我正在尝试与live函数一起使用的touchstart事件的jQuery获得X位置?

$('#box').live('touchstart', function(e) { var xPos = e.PageX; } );

现在,这确实可以将“ click”作为事件。到底如何(不使用Alpha jQuery Mobile)通过触摸事件获取它?

有任何想法吗?

谢谢你的帮助。


我发现这为那些谁需要利用这样的服务: - stackoverflow.com/questions/3183872/...它也适用于touchstart。
Waxical 2011年

Answers:


180

Kinda很晚,但是您需要访问原始事件,而不是jQuery触发的事件。另外,由于这些是多点触摸事件,因此需要进行其他更改:

$('#box').live('touchstart', function(e) {
  var xPos = e.originalEvent.touches[0].pageX;
});

如果需要其他手指,则可以在触摸列表的其他索引中找到它们。

更新JQUERY:

$(document).on('touchstart', '#box', function(e) {
  var xPos = e.originalEvent.touches[0].pageX;
});

您在结尾处缺少结尾的括号,应该是:})
SteveLacy 2013年

你是对的。两年来没有人感到惊讶!=)谢谢!
mkoistinen 2013年

不幸的是,这对我没有用,我最终不得不在第一个输入x和y touchmove
andrewb 2014年

@andrewb,加e.preventDefault()touchstart事件处理程序。
matewka 2014年

谢谢哥们。好e.touches[0].pageX;工作对我来说
贾扬特·Varshney

43

我将此简单功能用于基于JQuery的项目

    var pointerEventToXY = function(e){
      var out = {x:0, y:0};
      if(e.type == 'touchstart' || e.type == 'touchmove' || e.type == 'touchend' || e.type == 'touchcancel'){
        var touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0];
        out.x = touch.pageX;
        out.y = touch.pageY;
      } else if (e.type == 'mousedown' || e.type == 'mouseup' || e.type == 'mousemove' || e.type == 'mouseover'|| e.type=='mouseout' || e.type=='mouseenter' || e.type=='mouseleave') {
        out.x = e.pageX;
        out.y = e.pageY;
      }
      return out;
    };

例:

$('a').on('mousedown touchstart', function(e){
  console.log(pointerEventToXY(e)); // will return obj ..kind of {x:20,y:40}
})

希望这对您有用;)


13
无需检查事件类型,因为e.pageX对于触摸事件将是未定义的。只是做out.x = e.pageX || e.originalEvent.touches[0].pageX;
格里芬2014年

1
在返回之前,我添加了这部分以获取基于父元素的百分比位置,以防它对任何人有帮助。var parentLeft = e.target.offsetParent.offsetLeft; out.percentX =(out.x-offsetParent.offsetLeft)/ offsetParent.offsetWidth; out.percentY =(out.y-offsetParent.offsetTop)/ offsetParent.offsetHeight; 返回
sradforth 2015年

if(e.type == 'touchstart' || e.type == 'touchmove' || e.type == 'touchend' || e.type == 'touchcancel'){-> if (e.type.startsWith("touch"))
gil9red

@Griffin-我认为您的建议的问题是,在桌面上,当鼠标位于文档的左边缘时,语句的第一分支将产生0,这被解释为false,然后由于触摸而导致浏览器错误在第二个分支上未定义。同意?
MSC

13

我在这里尝试了其他一些答案,但是originalEvent也未定义。经过检查,找到了一个TouchList的分类属性(如另一个发布者所建议),并设法通过这种方式进入pageX / Y:

var x = e.changedTouches[0].pageX;

4
这适用于所有基于JavaScript的代码。螺丝jquery
Martian2049 '16

2
我的救星!即使对于touchmove()也可以完美工作。
Tibix


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.