iframe高度自适应
<script type="text/javascript">
function SetCwinHeight(){
var bobo=document.getElementById("bobo");
if (document.getElementById){
if (bobo && !window.opera){
if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight){
bobo.height = bobo.contentDocument.body.offsetHeight;
}else if(bobo.Document && bobo.Document.body.scrollHeight){
bobo.height = bobo.Document.body.scrollHeight;
}
}
}
}
</script>
<iframe marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" style="margin-left:-8px"
src="../Templet/TopTemp.html" id="bobo" onload="Javascript:SetCwinHeight()" width="974px"></iframe>