Bootstrap

uniapp使用iframe标签实现iframe高度自适应

uniapp页面嵌入百度地图,但是百度地图生成的文件是html,无奈只能用iframe引入这个文件,引入后发现高度只有50%。可以添加一段代码,实现iframe高度自适应。

<iframe id="iframe_id" src="./static/map.html" frameborder="0" style="width:100%;" scrolling="no"  onload="this.height=this.contentWindow.document.documentElement.scrollHeight"></iframe>

实现代码:scrolling="no"  οnlοad="this.height=this.contentWindow.document.documentElement.scrollHeight"

;