53
A
回答
6
AFAIK $(window).height();
返回你的窗口和$(document).height();
的高度返回文檔的高度
+7
重言式。 $(window).height()只是計算機的JavaScript語言,用於「返回窗口的高度」。你只是用人類語言來表示這一行代碼。儘管我沒有失望,因爲我不相信。 –
0
你需要知道什麼是平均約文件和窗口。
- 窗口對象表示瀏覽器中的打開窗口。 click here
- Document對象是文檔樹的根。 click here
103
那麼你好像把他們誤認爲他們做了什麼。
$(window).height()
爲您提供(瀏覽器)窗口又稱爲視口的高度的無單位像素值。就Web瀏覽器而言,這裏的視口是畫布的可見部分(其多次比正在呈現的文檔小)。
$(document).height()
返回正在渲染的文檔的高度的無單位像素值。如果實際文檔的身高小於視口高度,則它將返回視口高度。
希望能澄清一點事情。
-2
$(document).height:
如果您的設備height
比較大。你的頁面沒有任何滾動;
$(document).height:
假設你沒有滾動並返回這個height
;
$(window).height:
在您的設備上返回您的頁面height
。
6
這個固定我
var width = window.innerWidth;
var height = window.innerHeight;
相關問題
- 1. 是什麼的$(document).height()和$(窗口).height()
- 2. 含義$(窗口)的.scrollTop()==的$(document).height() - $(窗口).height()
- 3. $(document).height()no workey
- 4. 爲什麼$(document).height()與$(document.body).height()不同?
- 5. 使用$(窗口).height()
- 6. $(document).height()奇怪的行爲
- 7. jQuerys $(document).height()在mootools中?
- 8. flex measuredHeight vs height
- 9. getHeight()vs getLayoutParams()。height
- 10. JS「Window」width-height vs「screen」width-height?
- 11. $(document.body的).height()返回相同的值$(窗口).height()
- 12. 精確比較$(窗口).height()以$(窗口).height()滾動的特定值
- 13. jquery $(window).height()和$(document).height()返回相同的
- 14. 移動Safari $(窗口).height()URL欄差異
- 15. 使用$(窗口).height作爲動畫值
- 16. $(窗口).height()似乎並不確切
- 17. $(窗口).height()返回奇怪值
- 18. jQuery/JS,iOS 4和$(document).height()問題
- 19. jQuery計算$(document).height()太遲了?
- 20. $(document).height()隨機刷新值(Safari 5.1.10)
- 21. $(document).height和$(window).height都返回相同的值 - 正確使用doctype
- 22. min-height在vh vs%for body?
- 23. min-height,height,class,id precedence
- 24. javascript html height and window height
- 25. line-height與font-size/line-height
- 26. 爲什麼$(document).scrollTop()不等於文檔底部的$(document).height()?
- 27. 用`height = device-height`設置元視口標籤有什麼效果?
- 28. android - calculateInSampleSize,爲什麼Math.round在width> height時處理height(height/reqHeight)?
- 29. Monotouch:UITableViewCell height
- 30. $ .height上
這是兩個完全不同的事情。你是否想要獲得窗口,文檔,視口的高度? – Brad
'$(window).height();'是獲得窗口高度的正確方法。你爲什麼認爲這是錯的? –
@ Brad-其實我想要我的窗口覆蓋的全部高度,包括滾動區域,實際上我想用這個數字來計算和設置彈出的底部 –