我想要檢測用戶是否從邊緣滑動或在我打開面板前用$("#panel").panel("open");
。下面是代碼在jQuery Mobile中檢測邊緣滑動
$("#main").on("swiperight",function(event){
var data = event.originalEvent.touches ? event.originalEvent.touches[0] : event,
coords = [data.pageX, data.pageY];
console.log(coords);
});
然而coords
因爲我的錯誤未返回任何內容:
Uncaught TypeError: Cannot read property 'touches' of undefined
那麼,有沒有辦法讓刷卡時會發生座標?
或者有沒有簡單的方法來檢測起始位置是否從 左邊緣?
謝謝。
類似:http://stackoverflow.com/questions/24163202/javascript-touch-movement-tra ck-when-user-swipes-from-edges – trante