jquery鼠标移动不在触摸设备上工作

时间:2017-09-20 05:06:43

标签: javascript jquery touch

我有一个鼠标移动事件来滚动div。但是当尝试使用选项卡访问功能时它不起作用。如何将功能集成到触摸设备上。

$(document).ready(function(){
    $('#tim').on('mousemove', function(e) {
         //logic for moving the div
    });
});

1 个答案:

答案 0 :(得分:1)

尝试使用touchmove



var timer, delay = 3000;

// Clear out the previous timer.
// This will start a new timer again.
clearInterval(timer);

timer = setInterval(function(){
    $.ajax({
    type: 'GET',
    url: '/riders/location/track',
    data: {
       'city': city
    },
    ...
    ...
    ...