组件的 DOM 事件监听
注意:这篇文章是讲如何给 DOM 元素绑定 React 未提供的事件 (check here for more info。 当你想和其他类库比如 jQuery 一起使用的时候,需要知道这些。Try to resize the window:var Box = React.createClass({ getInitialState: function() { return {windowWidth: window.innerWidth}; }, handleResize: function(e) { this.
欢马劈雪