Home > Article > Web Front-end > Summary of jQuery methods for getting page width and height
This time I will bring you a summary of the jQuery method of getting the page width and height. What are the precautions for jQuery to get the page width and height? Here are practical cases, let’s take a look.
Get the height of the browser display area (visual area):
$(window).height();
Get the width of the browser display area (visual area):
$(window).width();
Get the document height of the page
$(document).height();
Get the document width of the page:
$(document).width();
Height of the document body of the current window of the browser:
$(document.body).height();
Height of the document body of the current window of the browser Width:
$(document.body).width();
Get the vertical height of the scroll bar to the top (that is, the height of the web page when it is rolled up)
$(document).scrollTop();
Get the vertical width of the scroll bar to the left:
$(document).scrollLeft();
Get Or set the width of the element:
$(obj).width();
Get or set the height of the element:
$(obj).height();
The distance from the upper border of an element to the top of body: obj .offset().top; (When the containing element does not contain a scroll bar)
The distance from the left border of an element to the leftmost edge of body: obj .offset().left; (When the element's containing element does not contain a scroll bar)
Returns the offset from the upper boundary of the current element to the upper boundary of its containing element: obj .offset().top(When the element's containing element contains a scroll bar)
Returns the offset from the left edge of the current element to the left edge of its containing element: obj.offset ().left (When the containing element of the element contains a scroll bar)
obj.offset().top;
Set or return the left boundary of the element that has been scrolled Or the number of pixels of the upper boundary. Simply put, it is to set or get the offset of the matching element relative to the upper or left side of the scroll bar. These pixels are only useful if the element has scrollbars, for example, if the element's CSS overflow property is set to auto. These properties are also only defined on the 6c04bd5ca3fcae76e30b72ad730ca86d or 100db36a723c770d327fc0aef2ce13b1 tag (this depends on the browser), and together they are used to specify the position of the scrolling document. Note that these properties do not specify the amount of scrolling for an d5ba1642137c3f32f4f4493ae923989c tag. This is a non-standard but well-supported attribute
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!
Recommended reading:
jQuery adds a line segment at intervals of a certain number of elements
How to use JS jQuery to verify registration information
The above is the detailed content of Summary of jQuery methods for getting page width and height. For more information, please follow other related articles on the PHP Chinese website!