touchSwipe无法正常工作

时间:2013-05-28 08:13:49

标签: javascript jquery html css

我想使用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);
        }
    }
}); 

0 个答案:

没有答案