为什么这三种写法得到的答案不同

来源:9-20 网页尺寸offsetHeight

黑豆0

2016-02-23 11:37

<!DOCTYPE HTML>

<head>

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

</head>

<body>

 <script type="text/javascript">

var w=document.documentElement.offsetWidth;

var h=document.documentElement.offsetHeight;

document.write(w+"***"+h+"<br>");

document.write(document.body.offsetWidth+"<br>");

document.write(document.body.offsetHeight+"<br>");


var x = document.documentElement.offsetWidth    || document.body.offsetWidth;

var y= document.documentElement.offsetHeight    || document.body.offsetHeight;

document.write("宽度:" + x);

document.write("<br>高度:" + y);

</script>

</body>

</html>


写回答 关注

1回答

  • qq_好几年不改网名_0
    2016-02-23 16:03:45

    浏览器的兼容性问题

JavaScript进阶篇

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

468061 学习 · 21891 问题

查看课程

相似问题