JS and JQUERY get the page size, scroll bar location, element location (sample code) _ jquery-js tutorial

Source: Internet
Author: User
This article mainly introduces the sample code for JS and JQUERY to get the page size, scroll bar location, and element location. For more information, see. js and jquery.

The Code is as follows:


// Page location and window size

Function GetPageSize (){
Var scrW, scrH;
If (window. innerHeight & window. scrollMaxY)
{// Mozilla
ScrW = window. innerWidth + window. scrollMaxX;
ScrH = window. innerHeight + window. scrollMaxY;
}
Else if (document. body. scrollHeight> document. body. offsetHeight)
{// All but IE Mac
ScrW = document. body. scrollWidth;
ScrH = document. body. scrollHeight;
} Else if (document. body)
{// IE Mac
ScrW = document. body. offsetWidth;
ScrH = document. body. offsetHeight;
}
Var winW, winH;
If (window. innerHeight)
{// All bytes t IE
WinW = window. innerWidth;
WinH = window. innerHeight;
} Else if (document.doc umentElement & document.doc umentElement. clientHeight)
{// IE 6 Strict Mode
WinW = document.doc umentElement. clientWidth;
WinH = document.doc umentElement. clientHeight;
} Else if (document. body) {// other
WinW = document. body. clientWidth;
WinH = document. body. clientHeight;
} // For small pages with total size less then the viewport
Var pageW = (scrW Var pageH = (scrH Return {PageW: pageW, PageH: pageH, WinW: winW, WinH: winH };

};

// Scroll bar position
Function GetPageScroll ()
{
Var x, y; if (window. pageYOffset)
{// All bytes t IE
Y = window. pageYOffset;
X = window. pageXOffset;
} Else if(document.doc umentElement & document.doc umentElement. scrollTop)
{// IE 6 Strict
Y = document.doc umentElement. scrollTop;
X = document.doc umentElement. scrollLeft;
} Else if (document. body) {// all other IE
Y = document. body. scrollTop;
X = document. body. scrollLeft;
}
Return {X: x, Y: y };

}


Jquery

Get the height of the display area of the browser: $ (window). height ();
Obtain the width of the display area of the browser: $ (window). width ();
Get the document height on the page: $ (document). height ();
Get the document width: $ (document). width ();

Obtain the vertical height of the scroll bar to the top: $ (document). scrollTop ();
Obtain the vertical width of the scroll bar to the left: $ (document). scrollLeft ();

Calculates the element position and offset.
The offset method is a useful method that returns the offset information of the first element in the packaging set. By default, it is the offset information relative to the body. The result contains the top and left attributes.
Offset (options, results)
Options. relativeTo specifies the ancestor element at the relative offset position. This element should be located by relative or absolute. If this parameter is omitted, it is relative to the body.
Options. Does scroll include the scroll bar? The default value is TRUE.
Options. whether to include padding. The default value is false.
Options. Whether margin is included. The default value is true.
Options. border determines whether to include the border. The default value is true.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.