리액트: DOM 리액트를 얼마나 조작할 수 있습니까? 이게 내가 하는 일이야: jsfiddle 중요한 섹션은 다음과 같습니다. position: function() { var container = $(this.getDOMNode()); this._menu = $(this.refs.menu.getDOMNode()); this._menu.appendTo(document.body). offset({ top: container.offset().top + container.outerHeight(), left: container.offset().left }); }, restore: function() { this._menu.appendTo(this.getDOMNode()); }, componentWillUpdate..