1
A
回答
1
找到頁面加載文檔的高度是一個太棘手,在我看來! 但是,在頁面加載後找到它是一件容易的事。 因此,試着在「componentDidMount()」函數中找到它!您可以使用:
document.documentElement.offsetHeight
$(document).height()
(事實也是陣營有一個內置的jQuery的版本,所以你可以實際使用第二種方式來獲得高)
例如:
import React, {Component} from 'react';
export default class YourClass extends Component {
constructor(props){
super(props);
// ...
}
componentDidMount() {
console.log("document-height",document.documentElement.offsetHeight);
console.log("jQuery-document-height",$(document).height());
}
render(){
// ...
}
}
+0
當在React中使用$(document).height()時,我沒有定義$。 –
相關問題
- 1. 獲取文檔的寬度和高度
- 2. jQuery:獲取HTML文檔的總高度
- 3. JavaFX webview,獲取文檔高度
- 4. 使用Dart獲取文檔高度?
- 5. React Navigation獲取堆棧頭高度
- 6. 從URL鏈接獲取文檔的高度和寬度鏈接到文檔
- 7. 獲取跨域iFrame中的文檔的高度
- 8. 如何獲取C#中呈現的HTML文檔的高度
- 9. iOS 9 UIWebView獲取html文檔的寬度和高度
- 10. react - 獲取要處理的圖像的寬度/高度
- 11. 如何在瀏覽器中獲取最大文檔高度?
- 12. jquery獲取文檔寬度
- 13. 獲取包含滾動條的文檔內容的高度javascript
- 14. 在React組件中獲取子元素的高度
- 15. 獲取React中兒童組件的高度
- 16. 真正跨瀏覽器的方式獲取文檔高度?
- 17. 如何獲取ACE Editor文檔的總高度?
- 18. 獲取高度
- 19. 如何使用C#獲取文檔高度?
- 20. 使用angularjs 1.2.4獲取文檔高度(不是身體)
- 21. 如何在不同縮放級別獲取文檔高度?
- 22. 在文檔加載時獲取圖像高度
- 23. PDF如何獲取文本的高度
- 24. 如何獲得PDF文檔在iframe中的加載高度
- 25. 獲取NSString高度
- 26. 獲取高度和寬度
- 27. 文檔高度未達到全高
- 28. 的IFrame文檔的高度返回iframe的高度不是真實的高度
- 29. Elasticsearch,獲取平均文檔長度
- 30. PHP獲取Pdf文件屬性中的高度和寬度
document.documentElement.offsetHeight – Karthik
http://stackoverflow.com/questions/1145850/how-to-get-height-of-entire-document-with-javascript –
React不是一個DOM實用程序庫,它不提供任何功能。你的身高和你沒有React的時候完全一樣。 –