window.scroll({ behavior: 'smooth' }) 在移动端不生效的问题解决

首先,遇到问题,一般百度解决不了。如果你是百度搜到我的那你真是幸运,反正我百度没搜到解决方法,最后还得靠goole。

先直接上解决方案:

// 安装这个插件
yarn add smoothscroll-polyfill 或者 npm i smoothscroll-polyfill

在你需要解决问题的页面引入:
import smoothscroll from 'smoothscroll-polyfill';
执行这个方法:
smoothscroll.polyfill();

好了问题解决。

其他方法:请参考

https://stackoverflow.com/questions/51229742/javascript-window-scroll-behavior-smooth-not-working-in-safari

你可能感兴趣的:(js笔记)