我的页面加载到 iframe 中,我需要使用 javascript 调整 iframe 的大小。我尝试以下方法:
iframe.style.overflow = 'hidden'
iframe.scrolling = 'no'
var content = iframe.contentWindow.document.getElementById('content')
var height = content.offsetHeight + 10
iframe.style.height = height + 'px'
console.log(content.offsetWidth)
var width = content.offsetWidth + 10
iframe.style.width = width + 'px'
在 FireFox 上它可以正常工作,但 IE9 忽略了滚动和溢出属性。浏览器模式设置为 IE9 标准。
如何摆脱IE9下iframe中的滚动?