0
내 페이지가 일종의 전체 화면 모드로 전환 될 때 touchwipe이 실행될 수 있지만이를 떠날 때 어떻게 이벤트를 바인딩 해제 할 수 있습니까?jQuery 터치 와이프를 바인딩 해제하는 방법은 무엇입니까?
내가 시도 ...
$(document).unbind();
$(document).unbind('touchmove touchstart');
$(document).off();
$(document).off('touchmove touchstart');
$(document).touchwipe({
wipeLeft:function(){},
wipeRight:function(){},
wipeUp:function(){},
wipeDown:function(){}
});