使用scrollIntoView向下滚动到元素,并使用React的refs来获取组件的DOM.
这是一个小例子,说明了你想要做什么.
var Hello = React.createClass({ componentDidMount() { alert("I will scroll now"); this.refs.hello.scrollIntoView(); // scroll... }, render: function() { returnHello {this.props.name}; // reference your component } }); ReactDOM.render(, document.getElementById('container') );