IOS手机在滑动超过1屏后,跳转到其他站点H5页面,返回时白屏,再次滑动页面恢复正常
History.scrollRestoration - Web API 接口参考 | MDN
History.scrollRestoration默认为auto 会恢复页面滚动位置 初始化时改为manual即可
useEffect(() => {if (window.history && window.history.scrollRestoration) {window.history.scrollRestoration = 'manual'}}, []);
注意:此属性不是都存在,需要设置兼容