offsetHeight出来的是0
为啥我这个offsetHeight出来的结果是0呢。。
为啥我这个offsetHeight出来的结果是0呢。。
2017-06-08
为什么我加了内容还是高度为0?
<!DOCTYPE HTML>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<script type="text/javascript">
document.write(document.body.offsetHeight+"<br>");
document.write(document.body.scrollHeight+"<br>");
document.write(document.body.clientHeight+"<br>");
</script>
第1句话
<div>
<p>第2句话</p>
</div>
</body>
</html>
举报