我使用了下面的JS来控制两个DIV的等高,放在网页的最下面。
<script> <BR> var mainCon=document.getElementById("sidebar-right").scrollHeight <BR> var sidebar=document.getElementById("center").scrollHeight <BR> layoutHeight=Math.max(mainCon,sidebar) <BR> document.getElementById("sidebar-right").style.height=layoutHeight+"px" <BR> document.getElementById("center").style.height=layoutHeight+"px" <BR></script>
在IE下正常,在火狐下,每次都要刷新一次,才能自动拉伸,大家有好的方法解决吗?