zl程序教程

您现在的位置是:首页 >  后端

当前栏目

js实现兼容IE6与IE7的DIV高度

JS 实现 兼容 div 高度 IE6 IE7
2023-06-13 09:14:18 时间
复制代码代码如下:

<bodyonload="setHeight()">
<scripttype="text/javascript">
functionsetHeight(){
varPageHeight=$("oPage").scrollHeight
varMaxHeight=507

if(PageHeight>MaxHeight)
{
$("oPageMain").style.height=$("oPage").scrollHeight+40+"px"
$("oRight").style.height=$("oPage").scrollHeight+120+"px"
$("oMain").style.height=$("oPage").scrollHeight+211+"px"
}
}
</script>