JQuery implements a method to prevent the return of the backspace key

Source: Internet
Author: User

JQuery implements a method to prevent the return of the backspace key

This article mainly introduces JQuery's method to prevent the return of the Backspace key. The example shows how jQuery makes Backspace unavailable while Backspace is still available in the browser, which is of great practical value, for more information, see

 

 

This example describes how JQuery can prevent the return of the backspace key. Share it with you for your reference. The specific implementation method is as follows:

The Code is as follows:

// Backspace is unavailable in the browser
$ (Document). keydown (function (e ){
Var keyEvent;
If (e. keyCode = 8 ){
Var d = e. srcElement | e.tar get;
If (d. tagName. toUpperCase () = 'input' | d. tagName. toUpperCase () = 'textarea '){
KeyEvent = d. readOnly | d. disabled;
} Else {
KeyEvent = true;
}
} Else {
KeyEvent = false;
}
If (keyEvent ){
E. preventDefault ();
}
});

// Only prevent Backspace from being available in the input and textarea browsers
$ (Document). keydown (function (e ){
Var keyEvent;
If (e. keyCode = 8 ){
Var d = e. srcElement | e.tar get;
If (d. tagName. toUpperCase () = 'input' | d. tagName. toUpperCase () = 'textarea '){
KeyEvent = d. readOnly | d. disabled;
}
} Else {
KeyEvent = false;
}
If (keyEvent ){
E. preventDefault ();
}
});

 

I hope this article will help you with jQuery programming.

Related Article

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.