我想使用touchSwipe.js
包含滑动功能,但我收到错误。
错误:
**Uncaught TypeError: Cannot call method 'handle' of undefined**
我有div :#myImageFlow
已在HTML中添加此内容:
$.getScript('js/touchSwipe.js');
和js文件中的这个函数:
$("#myImageFlow").swipe({
swipe:function(event, direction, distance, duration, fingerCount) {
if(direction == 'left') {
my.MouseWheel.handle(-1);
} else if (direction == 'right') {
my.MouseWheel.handle(1);
}
}
});