x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  width: 500px;
  background-color: lightblue;
  overflow: auto;
}
</style>
</head>
<body>
<p>点击“试一试”按钮可提示 DIV 元素的最大高度:</p>
<button onclick="myFunction()">试一试</button>
<div id="myDIV" style="max-height:100px;">
  <p>此 DIV 元素没有预定义的高度。</p>
  <p>此 DIV 元素的高度取决于其内容。</p>
  <p>但是此 DIV 元素有一个最大高度,永远不会超过 100 像素。</p>
</div>
<script>
function myFunction() {
  alert(document.getElementById("myDIV").style.maxHeight);
}
</script>
</body>
</html>