改变体型高度

时间:2012-01-11 18:41:18

标签: javascript html height document-body

有没有办法改变身高。我试过了:

if(document.body.scrollHeight > document.getElementById('DIVBODY').scrollHeight) {
  document.body.scrollHeight = document.getElementById('DIVBODY').scrollHeight
}

但它不起作用。 我动态地改变了我的DIVBODY内容,我不希望我比div DIVBODY更大。

body and div:

<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 个答案:

答案 0 :(得分:0)

来自MDN

  

scrollHeight是一个只读属性。

您可以尝试element.scrollTopelement.style.height来完成您想要的内容