调整滚动条的宽度的JS代码



调整滚动条的宽度的JS代码:

//设置滚动条的宽度
        document.all("dvBody").style.width = document.body.clientWidth - 10;
        document.all(
"dvBody").style.height = document.body.clientHeight - document.all("dvBody").offsetTop - 10;
        
function UpdateDIVWidth()
        {
            document.all(
"dvBody").style.width = document.body.clientWidth -10;
            document.all(
"dvBody").style.height = document.body.clientHeight - document.all("dvBody").offsetTop - 10;
        }

BODY里面加入 onResize = "UpdateDIVWidth"
posted @ 2005-09-07 17:56  Elaine Shi  阅读(4527)  评论(0编辑  收藏  举报