美文网首页
react 滚动

react 滚动

作者: dawn0 | 来源:发表于2018-01-05 18:33 被阅读0次

react组件中新加一条自动滚动到底部:

componentDidUpdate() {

    utils.logs(this.state.scrollTop, 'this.state.scrollTop')

    //滚动到列表顶部

    if (this.state.scrollTop) {

      this.nodeUl.scrollIntoView(true)

    }

    //滚动到列表底部

    // let scrollHeight = this.nodeUl.clientHeight

    // this.nodeDiv.scrollTop = scrollHeight

  }

scrollIntoView(true或不填) 组件顶部跟页面可是区域顶部齐平

scrollIntoView(false) 组件底部跟页面可视区域底部齐平

相关文章

网友评论

      本文标题:react 滚动

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