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