wysokość strony jQuery

Załóżmy, że strona internetowa jest dwa razy większa od okna przeglądarki (jest więc pasek przewijania). Jak odzyskać wysokość strony w jQuery?

Author: core, 2009-08-20

3 answers

$(window).height();   // returns height of browser viewport

$(document).height(); // returns height of HTML document
 134
Author: rahul,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2009-08-20 06:51:25

Możesz użyć height() dokumentu.

$(document).height();

 16
Author: theIV,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2012-08-04 21:16:29

To też może zadziałać.

$('body').height();
 0
Author: Soyeb Ahmed,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/doraprojects.net/template/agent.layouts/content.php on line 54
2018-08-18 01:31:20