How to get the focus of a text box in js (jquery) and to lose the focus _ javascript skills

Source: Internet
Author: User
This article introduces two methods and one is to use javascriptonFocusonBlur to determine the focus and the loss of the focus, and the other is to use jquery $ (& quot; p & quot ;). blur (); or $ (& quot; p & quot ;). blur (fn) is implemented. If you need it, you can refer to the javascript directly written on the input.

The Code is as follows:





Jquery Implementation Method

For element focus events, we can use jQuery's focus functions focus () and blur ().

Focus (): used to obtain the focus, which is the same as onfocus in javascript.
For example:

The Code is as follows:


$ ("P"). focus (); or $ ("p"). focus (fn)


Blur (): used when the focus is lost, just like onblur.
For example:

The Code is as follows:


$ ("P"). blur (); or $ ("p"). blur (fn)


Instance

The Code is as follows:




Jquery code

The Code is as follows:


$ (Function (){
$ ('# Searchkey'). focus (function (){
$ ('# Lbsearch'). text ('');
});
$ ('# Searchkey'). blur (function (){
Var str = $ (this). val ();
Str = $. trim (str );
If (str = '')
$ ('# Lbsearch'). text ('search God horse? ');
});
})


Okay, pretty good.
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.