html:
<iframe
v-if="detailSrc"
ref="browser"
class="webview publicWebview"
:src="detailUrl"
@load="setHeight"
></iframe>
js:
setHeight() {
const { browser } = this.$refs;
let iframeWin = browser.contentWindow;
let height =
iframeWin.document.documentElement.scrollHeight ||
iframeWin.document.body.scrollHeight;
browser.height = height;
return height;
},
注意: 这里一定要在onload 方法里调用,要不然,高度设置不上。