我有这个直接的zepto滑动代码
$(function(){
$(document).on('swipeRight',function(e){
alert("right");
});
$(document).on('swipeLeft', function(e){
alert("left");
});
});
我似乎无法通过iOSSimulator或实际设备触发此操作。
但是,我可以从控制台调用$(document).trigger('swipeRight')
并触发事件。我没有看到任何明显的错误输出
使用Zepto v1.0-1-ga3cab6c
IOs 7
答案 0 :(得分:3)
我需要包含zepto'touch'模块。