iframe自适应高度

function set_iFrameHeight() {   
        var ifm= document.getElementById("frameContent"); 
		$(ifm).load(function(){             //当iframe载入后执行
		    var subWeb = ifm.contentWindow.document;   //contentWindow为iframe里面的window对象
            if(ifm != null && subWeb != null) {
               $(ifm).height($(subWeb).height());        //设置iframe为其document的高度
            } 
		})  
          
	}  
貌似在跨域情况下,无效

你可能感兴趣的:(iframe自适应高度)