我有一个鼠标移动事件来滚动div。但是当尝试使用选项卡访问功能时它不起作用。如何将功能集成到触摸设备上。
$(document).ready(function(){
$('#tim').on('mousemove', function(e) {
//logic for moving the div
});
});
答案 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
},
...
...
...