为了账号安全,请及时绑定邮箱和手机立即绑定

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

<!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 回答

浏览器的兼容性问题

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信