我想包含滑动功能,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);
}
}
});