我的頁面被加載到iframe中,我需要使用javascript來調整iframe的大小。我嘗試以下操作:IE9忽略滾動和溢出屬性
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滾動?
我無法在IE10上使用此jsfiddle在IE10上進行復制(與通過開發工具激活的IE9的兼容模式):http://jsfiddle.net/lechlukasz/dGEx9/3/ –