suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - 如何移出zepto.js 默认绑定的body touchmove事件?

页面引入zepto.js之后会默认给body绑定一个touchmove方法

我首先想到的是使用 removeEventListener()方法,但是要移出的事件函数为必填。这里不知道如何处理?
element.removeEventListener(event, function, useCapture)

大家讲道理大家讲道理2846 Tage vor690

Antworte allen(2)Ich werde antworten

  • 天蓬老师

    天蓬老师2017-04-10 16:55:59

    document.removeEventListener("touchmove", self.pageLockHandler, false);
    function pageLockHandler(e) {
        e.preventDefault();
    }
    

    之所以把这函数拆出来,是有可能你在特定情况下还需要再次绑定~

    Antwort
    0
  • PHPz

    PHPz2017-04-10 16:55:59

    已经解决了。
    $('body').off('touchmove')

    Antwort
    0
  • StornierenAntwort