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

0

我最终在文档本身以外的其他东西上使用了 touchwipe,这些东西会被删除并重新显示。所以,没有解除绑定,而是一个有效的触摸擦拭。

于 2013-10-06T21:08:45.057 回答