因为页面通过调用document addEventL istener来添加一个mousewheel事件的监听器handler ,并通过设置passive属性的值为true来声明监听器handler是被动监听mousewheel事件,即handler内部不会调用事件的preventDefault函数。 解决方法: 在css文件中添加 * { touch-action: none; }