提交 d60433da 编写于 作者: X xiaoyucoding

fix: 修复 pageScrollTo 在微信浏览器无效的问题

上级 3cebcc14
......@@ -20,7 +20,8 @@ export function pageScrollTo ({
scrollTop = Math.min(scrollTop, scrollHeight - clientHeight)
if (duration === 0) {
documentElement.scrollTop = scrollTop
// 部分浏览器(比如微信)中 scrollTop 的值需要通过 document.body 来控制
documentElement.scrollTop = document.body.scrollTop = scrollTop
return
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册