私のページは 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-Standards に設定されています。
IE9の下でiframeでそのスクロールを取り除く方法は?