js实现兼容IE6与IE7的DIV高度
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:functionsetHeight(){varPageHeight=$("oPage").scrollHeightvarM...
复制代码 代码如下:
<body onload="setHeight()">
<script type="text/javascript">
function setHeight() {
var PageHeight=$("oPage").scrollHeight
var MaxHeight=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>