复制下面的代码即可
constructor(props){
super(props)
this.state = {};
this.scrollTop = 0;
this.handleScroll = this.handleScroll.bind(this)
}
componentWillMount(){
window.addEventListener('scroll', this.handleScroll)
}
componentWillUnmount(){
window.removeEventListener('scroll',this.handleScroll)
}
THE END
网友评论