HTML DOM height 属性
JavaScript基础 2022-06-08 14:49:07小码哥的IT人生shichen
HTML DOM height 属性
定义和用法
height 属性设置元素的高度。
语法:
Object.style.height=auto|length|%
可能的值
值 | 描述 |
---|---|
auto | 默认。浏览器会计算出实际的高度。 |
length | 使用 px、cm 等单位定义高度。 |
% | 基于其包含块的百分比高度。 |
实例
本例设置按钮的高度:
<html>
<head>
<script type="text/javascript">
function setHeight()
{
document.getElementById("b1").style.height="50px";
}
</script>
</head>
<body>
<input type="button" id="b1" onclick="setHeight()"
value="Change height of button to 50 px" />
</body>
</html>
TIY
完整实例【height - 设置元素的高度】:
<html>
<head>
<script type="text/javascript">
function setHeight()
{
document.getElementById("b1").style.height="50px";
}
</script>
</head>
<body>
<input type="button" id="b1" onclick="setHeight()" value="Change height of button to 50 px" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html