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

为何通过documentElement获取的是8,通过body获取的是0

 var w=document.body.offsetWidth;

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

 document.write("宽:"+w+"</br>高:"+h);


提问者:金刚无敌葫芦娃 2020-03-21 23:51

个回答

  • LSQ687
    2020-03-28 14:54:33

    offsetHeighth获取的是网页内容的高度,所以是8,你的内容多了高度就大了