0

ページが一種のフルスクリーン モードになったときにtouchwipeを実行できますが、ページを離れるときにイベントのバインドを解除するにはどうすればよいですか?

私は試した...

$(document).unbind();
$(document).unbind('touchmove touchstart');
$(document).off();
$(document).off('touchmove touchstart');
$(document).touchwipe({
    wipeLeft:function(){},
    wipeRight:function(){},
    wipeUp:function(){},
    wipeDown:function(){}
});
4

1 に答える 1