
大概意思呢就是:一个有设置cancelable=false的touchmove事件和其他某个滚动的操作冲突了。
我们只需要将滑动报错的标签上加上一个样式即可 touch-action: none;
touch-action :当你触摸并按住触摸目标时候,禁止或显示系统默认菜单。
touch-action取值有一下两种
none:系统默认菜单被禁用
default:系统默认菜单不被禁用
* { touch-action: none; }
大概意思呢就是:一个有设置cancelable=false的touchmove事件和其他某个滚动的操作冲突了。
我们只需要将滑动报错的标签上加上一个样式即可 touch-action: none;
touch-action :当你触摸并按住触摸目标时候,禁止或显示系统默认菜单。
touch-action取值有一下两种
none:系统默认菜单被禁用
default:系统默认菜单不被禁用
* { touch-action: none; }