Ignored attempt to cancel a touchmove event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.
时间:2021-01-02 11:19:36
收藏:0
阅读:44
意思呢就是:一个有设置cancelable=false的touchmove事件和其他某个滚动的操作冲突了。
解决方法:在滚动的标签外层 添加 touch-action: none 样式,
原文:https://www.cnblogs.com/zhaobao1830/p/14221529.html
评论(0)