1
我有這個簡單的仄刷卡代碼如何觸發仄刷卡事件與設備的交互
$(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