因为无法获取父框架的实际尺寸,相对设定有时无效,可以加上下面的代码获取。
- <script type="text/javascript">
- window.onload=function(){
- var a=document.body.clientWidth;
- //alert(a); //弹出数值测试
- var b=document.body.clientHeight-100;
- //alert(b);
- document.getElementById("reportFrame").style.width=a+"px";
- document.getElementById("reportFrame").style.height=a+"px";
- }
- </script>
复制代码
|