IFRAME自适应高度

测试可以使用

<iframe border=1 name="hj" id="hj" marginwidth=0 framespacing=0 marginheight=0 src="order_check/links.asp" frameborder=0 noResize width=100% scrolling=no vspale="0" bordercolor="#ffffff" ></iframe>

link.asp

<head>
<SCRIPT LANGUAGE="JavaScript">

function f_frameStyleResize(targObj){

var targWin = targObj.parent.document.all[targObj.name];

if(targWin != null) {

var HeightValue = targObj.document.body.scrollHeight

if(HeightValue < 400){HeightValue = 400}

targWin.style.pixelHeight = HeightValue;

}

}

function f_iframeResize(){

bLoadComplete = true; f_frameStyleResize(self);

}

var bLoadComplete = false;

window.onload = f_iframeResize;

</SCRIPT>

</head>

你可能感兴趣的:(JavaScript,F#,asp)