Js operation input box prompts and responds to mouse events _ javascript skills

Source: Internet
Author: User
The default prompt value is displayed in the registration website input box. When the mouse focus is obtained, the default value is deleted. When the user does not enter the focus, and restore the default prompt value. We often encounter some input boxes. For example, the default prompt value is displayed in the registration website input box. When obtaining the mouse focus, the default value is deleted, when the user does not enter the focus to exit, the default prompt value is restored. This method is implemented using js Code as follows:

Html code:

The Code is as follows:




Js Code:

The Code is as follows:


Function fn_focus (ele ){
If (ele. value = ele. defaultValue ){
Ele. value = '';
}
}
Function fn_blur (ele ){
Var reg =/^ [\ s] * $ /;
If (reg. test (ele. value) | ele. value = ele. defaultValue ){
Ele. value = ele. defaultValue;
}
}

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.