美文网首页
react 滚动到顶部组件

react 滚动到顶部组件

作者: GDUF_XRT | 来源:发表于2019-06-03 16:33 被阅读0次

核心代码

document.body.scrollTop = document.documentElement.scrollTop = 0;

react HOC

import React from 'react';

function withAutoToTop(WrappedComponent) {
  return class extends React.Component {
    componentDidMount() {
      document.body.scrollTop = document.documentElement.scrollTop = 0;
    }

    render() {
      return <WrappedComponent {...this.props} />;
    }
  };
}

export default withAutoToTop;

相关文章

网友评论

      本文标题:react 滚动到顶部组件

      本文链接:https://www.haomeiwen.com/subject/wgacxctx.html