内嵌iframe时相对宽度高度无效的解决办法
因为无法获取父框架的实际尺寸,相对设定有时无效,可以加上下面的代码获取。
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";
}