为什么第二个高度显示为34

来源:9-19 网页尺寸scrollHeight

阿衰丶

2016-08-03 16:01

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 

</head>
<body>
<script type="text/javascript">
document.write(document.body.scrollHeight+" ")
document.write(document.body.scrollWidth+"<br/>")
document.write(document.documentElement.scrollHeight+" ")
document.write(document.documentElement.scrollWidth)
</script>
</body>    
</html>


写回答 关注

1回答

  • Binzai1994
    2016-08-03 19:11:45
    已采纳

    document.body是DOM中Document对象里的body节点, document.documentElement是文档对象根节点(html)。

    阿衰丶

    非常感谢!

    2016-08-03 19:12:36

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题