标签: javascript reactjs
做了类似的事情之后:
ReactDOM.render(<ConfirmForm />, document.getElementById('confirm-form'));
如何从confirm-form元素中获取ConfirmForm dom元素?
confirm-form
ConfirmForm
在我可以做的componentDidMount方法内
componentDidMount
ReactDOM.findDOMNode(this).parentElement
但在render方法中,我无法使用this。
render
this
由于