您的位置:首页 > 其它

document.documentElement和document.body

2016-03-05 19:05 447 查看
<script>
var a9=document.documentElement.clientWidth;// 包含margin-top ,bottom
var a10=document.body.clientWidth;//不包含margin-left,right
var a11=document.documentElement.offsetHeight;//包含margin-top ,bottom
var a12=document.body.clientHeight;//不包含margin-top bottom
var a13=document.documentElement.offsetWidth;//包含margin-left,right
var a14=document.body.offsetWidth;//不包含margin-left,right
var a15=document.documentElement.offsetHeight;//包含margin-top bottom
var a16=document.body.offsetHeight;//不包含margin-top bottom
</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  width height