日期:2014-05-17 浏览次数:21150 次
<SCRIPT LANGUAGE="JavaScript">
    function aaa(){
        var _height=document.getElementById('ccc').offsetHeight;
        if(_height>300 && _height<800){
            document.getElementById('bbb').style.height=_height;
        }else if(_height>800){
            document.getElementById('bbb').style.height=800;
            document.getElementById('bbb').style.overflow='auto';
        }
    }
</SCRIPT>
 <BODY onload="aaa();">
  <div id="bbb" style="width:300px;height:300px;border:1px solid #000;overflow:hidden">
    <div id="ccc">
        sagjasdg asdg<br/>sagjasdg asdg<br/>sagjasdg asdg<br/>sagjasdg asdg<br/>sagjasdg asdg<br/>sagjasdg asdg<br/>sagjasdg asdg<br/>
    </div>
  </div>
 </BODY>