Remember the position of the scroll bar when refreshing the page. jquery code

Source: Internet
Author: User

@ * Remember the position of the scroll bar when you click the button to refresh the page *@
Copy codeThe Code is as follows:
<Script type = "text/javascript">
Window. onbeforeunload = function (){
Var scrollPos;
If (typeof window. pageYOffset! = 'Undefined '){
ScrollPos = window. pageYOffset;
}
Else if (typeof document. compatMode! = 'Undefined '&&
Document. compatMode! = 'Background '){
ScrollPos = document.doc umentElement. scrollTop;
}
Else if (typeof document. body! = 'Undefined '){
ScrollPos = document. body. scrollTop;
}
Document. cookie = "scrollTop =" + scrollPos; // store the position of the scroll bar to cookies.
}

Window. onload = function (){
If (document. cookie. match (/scrollTop = ([^;] +) (; | $ )/)! = Null ){
Var arr = document. cookie. match (/scrollTop = ([^;] +) (; | $)/); // If the cookie is not empty, the position of the scroll bar is read.
Document.doc umentElement. scrollTop = parseInt (arr [1]);
Document. body. scrollTop = parseInt (arr [1]);
}
}
</Script>

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.