JQuery prevents page bounce

Source: Internet
Author: User

Sometimes we need to prevent the page with the backspace key from moving back. Generally, it is best not to use this function because it is not good for UX. Below are the Js snippets tested in IE9 and Firebox 10.0.2:
$ (Document). keydown (function (e ){
Var doPrevent;
If (e. keyCode = 8 ){
Var d = e. srcElement | e.tar get;
If (d. tagName. toUpperCase () = 'input' | d. tagName. toUpperCase () = 'textarea '){
DoPrevent = d. readOnly | d. disabled;
}
Else
DoPrevent = true;
}
Else
DoPrevent = false;

If (doPrevent)
E. preventDefault ();
});
 
Code on how to determine the Backspace key can be http://api.jquery.com/event.which/ here
Hope to help your Web development.

Articles you may be interested in:

Use Jquery, CSS3 to implement a circle effect http://www.bkjia.com/kf/201202/121327.html like GooglePlus

From PetterLiu
 

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.