iframe自适应高度
<script type="text/javascript">
function SetCwinHeight(){
var iframeid=document.getElementById("iframeid"); //iframe id
if (document.getElementById){
if (iframeid && !window.opera){
if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight){
iframeid.height =
iframeid.contentDocument.body.offsetHeight;
}else if(iframeid.Document &&
iframeid.Document.body.scrollHeight){
iframeid.height = iframeid.Document.body.scrollHeight;
}
}
}
}
</script>
<iframe width="100%" id="iframeid"
onload="Javascript:SetCwinHeight()" height="1"
frameborder="0" src="xxx.aspx"></iframe>
浙公网安备 33010602011771号