获取窗口高度让表格适应窗口

在网页头部加入以下Script代码

以下是代码片段:
<Script>
function init()
{
     var windowWidth, windowHeight;
     if (self.innerHeight) {  // all except Explorer
        windowWidth = self.innerWidth;
        windowHeight = self.innerHeight;
     } else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
        windowWidth = document.documentElement.clientWidth;
        windowHeight = document.documentElement.clientHeight;
     } else if (document.body) { // other Explorers
        windowWidth = document.body.clientWidth;
        windowHeight = document.body.clientHeight;
     } 
   

    var firstsheet=document.styleSheets[0];
    var therules=firstsheet.cssRules? firstsheet.cssRules: firstsheet.rules;
    var treeHeight =  windowHeight - 72;
    left_tree.style.height= treeHeight + "px";
}
</style>

在Body标签加入

以下是代码片段:
onload='init();'

版权声明:
作者:Kiyo
链接:https://www.wkiyo.cn/html/2008-01/i414.html
来源:Kiyo's space
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>