左右滑动有什么兼容性问题吗?
做好的页面在我手机上访问能点击,但左右滑动没效果?有什么兼容性问题吗?我的手机小米3TD版miui6系统,请老师或大伙儿帮忙解决这个问题,探究一下
做好的页面在我手机上访问能点击,但左右滑动没效果?有什么兼容性问题吗?我的手机小米3TD版miui6系统,请老师或大伙儿帮忙解决这个问题,探究一下
2014-12-19
用swipeLeft 时候阻止document默认事件就好了, 亲, container.delegate('li', 'tap', function () { var _id = cId = $(this).data('id'); loadImg(_id); document.addEventListener('touchmove', stopPrevent, false); }); function stopPrevent(e) { e.preventDefault(); return false; } var lock = false; largeContainer.tap(function (e) { $(this).hide(); document.removeEventListener('touchmove',stopPrevent, false); })
举报