js如何获取div的高度?代码如下:
<script type="text/javascript">
window.onload = function(){</script>
其中:document.getElementById("top").offsetHeight
意思为获取ID为top的div的高度。
或者使用:
document.getElementById(
"div1"
).style.height
意思为获取ID为div1的div的高度。
!评论内容需包含中文