關於ifream的頁面鑲嵌高度調節

<iframe
   id="frame_content"
   src="test.html"
   scrolling="no"
   frameborder="0" width="100%" onload="this.height=this.contentWindow.document.documentElement.scrollHeight">
 </iframe>
function changeFrameHeight() {
    var ifm = document.getElementById("frame_content");
    ifm.height = document.documentElement.clientHeight - 100;
}

window.onresize = function () {
    changeFrameHeight()
}
相關文章
相關標籤/搜索