设立有iframe的页面根据窗口大小自动调整大小
设置有iframe的页面根据窗口大小自动调整大小
有时页面会出现莫名的不能占满页面的情况
也要同时设置iframe的大小
有时页面会出现莫名的不能占满页面的情况
window.onload=function(){ var height=document.documentElement.clientHeight; document.getElementById('left_area_id').style.height=height-2+"px"; document.getElementById('right_area_id').style.width=document.documentElement.clientWidth-266+"px"; document.getElementById('right_area_id').style.height=height-2+"px";//parentFrame document.getElementById('parentFrame').style.height=height-2+"px"; window.onresize=function(){ document.getElementById('right_area_id').style.width=document.documentElement.clientWidth-266+"px"; } }
也要同时设置iframe的大小