javascript去除ifarme滚动条

来源:互联网 发布:双色球摇奖软件 编辑:程序博客网 时间:2024/05/01 18:13

<iframe id="mainFrame" width="100%" scrolling="no" height="445" frameborder="0" src="user_manage.asp"></iframe> 

<script type="text/javascript">

 function reinitIframe(){
 
 var iframe = document.getElementById("mainFrame");
 
 try{
 
 var bHeight = iframe.contentWindow.document.body.scrollHeight;
 
 var dHeight = iframe.contentWindow.document.documentElement.scrollHeight;
 
 var height = Math.max(bHeight, dHeight);
 
 iframe.height =  height;
 
 }catch (ex){}
 
 }
 
 window.setInterval("reinitIframe()", 200);

</script>