检索或设置对象的高度。 对于 img 对象来说,仅指定此属性,其 width 值将根据图片源尺寸等比例缩放。 按照样式表的规则,对象的实际高度为其下列属性值之和: margin-top + border-top + padding-top + height + padding-bottom + border-bottom + margin-bottom 在IE6中使用 !DOCTYPE 声明指定 standards-compliant mode 可以实现这一点。 而在IE6中如果没有将 !DOCTYPE 声明指定 standards-compliant 模式,以及以前的浏览器版本,对象的实际高度等于: margin-top + height+ margin-bottom 此属性对于 currentStyle 对象而言是只读的。对于其他对象而言是可读写的。 对应的脚本特性为 height 。其值为一字符串,所以不可用于脚本(Scripts)中的计算。请使用 style 对象的 posHeight , pixelHeight ,以及对象的 offsetHeight 等特性。