我制作了包含触控模块的zepto .js的自定义版本。当我检查我的zepto.js文件时,我在最后找到了这个
,a(window).on("scroll",l)}),["swipe","swipeLeft","swipeRight","swipeUp","swipeDown","doubleTap","tap","singleTap","longTap"].forEach(function(b){a.fn[b]=function(a){return this.on(b,a)}})}(Zepto)
这让我相信滑动已加载到js文件中。
在我的HTML底部,我有这个:
...
<script type="text/javascript" src="js/zepto.min.js"></script>
<script type="text/javascript">
$(".row.main").swipe(function(){
window.location.href = "editorial.html";
})
</script>
</body>
</html>
我不明白为什么会收到Uncaught TypeError: Object [object Object] has no method 'swipe'
错误。
有人可以帮助我吗?