赞
踩
最近适配响应式,发现手机端的时候,绑定的mousemove事件失效了,查了一下。
移动端使用如下事件进行绑定
1. touchstart 当手指触摸屏幕的时候触发
2. touchmove 当手指在屏幕来回的滑动时候触发
3. touchend 当手指离开屏幕的时候触发
4. touchcancel 当被迫终止滑动的时候触发(来电,弹消息)
- $(document).on('touchmove', function (e) {
- //...
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。