有什么办法可以改变身体的高度。我试过了:
if(document.body.scrollHeight > document.getElementById('DIVBODY').scrollHeight) {
document.body.scrollHeight = document.getElementById('DIVBODY').scrollHeight
}
但是它不起作用。我动态地改变我的DIVBODY内容,我不希望我的比div DIVBODY大。
主体和分部:
<body background="images/grey-lines.png" style="overflow-y:scroll" >
<div id="DIVBODY" style="max-width:1102px; margin: auto; width: expression( Math.min(parseInt(this.offsetWidth), 1102) ); height:100%; text-align:center; align:center;
background-image: url(bg/wood-3.jpg) ; background-color:#af7746; background-attachment:fixed; background-position: top center ; background-repeat: repeat; border-left: 1px solid black; border-right: 1px solid black; height: auto; min-height: 100%; _height: 100%;">
1条答案
按热度按时间p1iqtdky1#
从MDN开始:
scrollHeight
是只读属性。您可以尝试使用
element.scrollTop
和element.style.height
来完成您想要的任务