问答详情
源自:9-20 网页尺寸offsetHeight

这几节获取尺寸的都不懂,输出结果不知道为毛会是这样370*8 370*34 355*36

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

    || document.body.offsetWidth;

var h= document.documentElement.offsetHeight

    || document.body.offsetHeight;

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

var a= document.documentElement.offsetWidth;

var b= document.documentElement.offsetHeight;

document.write(a+"*"+b+"<br>");

var c= document.body.offsetWidth;

var d= document.body.offsetHeight;

document.write(c+"*"+d+"<br>");

</script>

</body>

</html>


提问者:慕九州7581199 2016-04-01 21:38

个回答

  • jfhdibrbfjd
    2016-04-06 16:17:05

    你仔细读一下  题目  就懂了