為何通過documentElement獲取的是8,通過body獲取的是0
?var w=document.body.offsetWidth;
?var h=document.body.offsetHeight||document.documentElement.offsetHeight;
?document.write("寬:"+w+"</br>高:"+h);
?var w=document.body.offsetWidth;
?var h=document.body.offsetHeight||document.documentElement.offsetHeight;
?document.write("寬:"+w+"</br>高:"+h);
2020-03-21
舉報
2020-03-28
offsetHeighth獲取的是網頁內容的高度,所以是8,你的內容多了高度就大了