react 滚动

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 滚动)