当前位置: 首页 > 工具软件 > jQuery Touch > 使用案例 >

jQuery touchstart,touchmove,touchend 获取位置

竺勇
2023-12-01

jQuery的touchstart,touchmove,touchend的获取位置

     $('#webchat_scroller').on('touchstart',function(e) {

      var touch = e.originalEvent.targetTouches[0];

      var y = touch.pageY;

      });

 

 

      $('#webchat_scroller').on('touchmove',function(e) {

      var touch = e.originalEvent.targetTouches[0];

      var y = touch.pageY;

      });

     $('#webchat_scroller').on('touchend',function(e) {

       var touch = e.originalEvent.changedTouches[0];

      var y = touch.pageY;

   });

 类似资料: