1
Mobile Safari將不會註冊touchmove
事件! touchstart
和touchend
均按預期工作,但touchmove
拒絕啓動。`touchmove`事件不會在Mobile Safari上觸發?
$("#Element").on({
"touchmove" : function(e){
e.preventDefault();
console.log("touch move!");
}
});