react根元素添加元素 body添加元素
emer 发布于 2019-6-27 16:14 6098 次阅读
import React from 'react'; import ReactDOM from 'react-dom'; class NewPortal extends React.Component { constructor(props) { super(props) this.node = document.createElement('div'); document.body.appendChild(this.node); } render() { const { children } = this.props; return ReactDOM.createPortal( children, this.node, ); } } export default NewPortal