Disable F5 refresh jquery instance Code

Source: Internet
Author: User

Disable F5 to refresh the jquery instance code:
F5 has the ability to refresh the Web page, you may sometimes need to disable this feature, and here's a code example to explain how to implement this feature.
The code is as follows:

$ (document). Ready (function() {   $ (document). Bind ("KeyDown",function(e) {      var e=window.event| | e;      if (e.keycode==116) {       = 0;        return false ;     }   }) })

The above code to achieve our requirements, here is not more introduction, specific to read the relevant reading.
Related reading:
1.bind () refer to the Bind () method section of jquery .
2.keyCode can refer to JS keyboard keys KeyCode property values corresponding to the table section.

The original address is: http://www.softwhy.com/forum.php?mod=viewthread&tid=12725

For more information, refer to: http://www.softwhy.com/jquery/

Disable F5 refresh jquery instance Code

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.