React系列之分享一个自适应高的iframe组件
📝
内容提要
在网页里面先要嵌入iframe,总是得要解决iframe高度的问题. 那我们在React下,该怎么做到呢? class FullheightIframe extends Component { constructor() { super(); this.state = { iFrameHeight: "0px" }; } render()...
➡️