zepto 引用data组件目的是想使用iscroll插件,场景是点击弹框内部使用iscroll上下滑动,此时需要全局阻止touchmove默认var evtHandler = function(e){e.preventDefault()}document.addEventListener('touchmove',evtHandler,false);当我隐藏弹框内容时,需要恢复全局的touchmove事件(也就是默认的全局html的上下滚动)用removeEventListener是没用的。找到一个用法是data来记录默认的touchmove事件,在阻止后可以恢复,求助如何使用$.data()方法var evt2 = $.data(document,'touchmove')显示evt2是undefined,这个要怎么写?
添加回答
举报
0/150
提交
取消