在學(xué)習(xí)html的過程中谜酒,很多同學(xué)都會(huì)把window本姥、doucment舞肆、 html和body四者混淆焦辅,現(xiàn)將四者的區(qū)別進(jìn)行分別闡述:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
*{
margin:0;
padding:0;
}
#box{
width:100px;
height:100px;
background:aqua;
}
</style>
<script>
window.onload=function(){
//window的高度
var oC=document.documentElement.clientHeight;
alert(oC);
//document的高度
var oBox=document.getElementById("box");
var scrollHeight=document.documentElement.scrollHeight;
oBox.onclick=function(){
alert(oBox.scrollHeight);
};
};
</script>
</head>
<body>
<div id="box"></div>
</body>
</html>
如上例子,我們可以簡單理解:
window的意思是窗口椿胯,它是指窗口大小的可視高度筷登,不包括瀏覽器滾動(dòng)條,
高度為document.documentElement.clientHeight;
document的意思是文檔哩盲,它是指具體的一個(gè)對象的內(nèi)容高度前方,高度為對象的document.documentElement.scrollHeight;
在代碼里面可以看到,body是包含在html里的廉油,在標(biāo)準(zhǔn)瀏覽器里面html部分是等于body部分的惠险。