首页 > 代码库 > iframe自适应内容高度

iframe自适应内容高度

onload="this.height=this.contentWindow.document.body.scrollHeight"

/**
*上传控件iframe自适应
**/
function iframeautoHeight(obj, frameObj) {
    if (document.all) {
        if (frameObj) {
            obj.height = document.getElementById(frameObj).contentWindow.document.body.scrollHeight;
            obj.width = document.getElementById(frameObj).contentWindow.document.body.scrollWidth;
        } else {
            obj.height = obj.contentWindow.document.body.scrollHeight;
            obj.width = obj.contentWindow.document.body.scrollWidth;
        }
    } else {
        if (frameObj) {
            obj.height = document.getElementById(frameObj).contentWindow.document.body.offsetHeight;
            obj.width = document.getElementById(frameObj).contentWindow.document.body.clientWidth;
        } else {
            obj.height = obj.contentWindow.document.body.offsetHeight;
            obj.width = obj.contentWindow.document.body.clientWidth;
        }
    }
}

iframe自适应内容高度