Input loses focus and gets focus jquery Focus Event

Source: Internet
Author: User

Input loses focus and gets focus jquery Focus event plugin,
The text disappears when the mouse clicks in the search box .

When we do the site often use the search box to get focus and lose focus of the event, because lazy, every time to write very annoying, so once and for all, encounter similar situation to call on the OK

Related JS code:

1 2 3 <meta http-equiv= "Content-type" content= "text/html; Charset=utf-8 "/>
4 <title>input loses focus and gets focus jquery Focus Event Plugin-lazy people build station </title>
5 <script src= "Http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type= "Text/javascript" >< /script>
6 <script type= "Text/javascript" >
7 $ (document). Ready (function () {
8//focusblur
9 Jquery.focusblur = function (focusid) {
Ten var Focusblurid = $ (FOCUSID);
One-to-one var defval = Focusblurid.val ();
Focusblurid.focus (function () {
var Thisval = $ (this). Val ();
if (thisval==defval) {
$ (this). Val ("");
16}
17});
Focusblurid.blur (function () {
var Thisval = $ (this). Val ();
if (thisval== "") {
$ (this). Val (Defval);
22}
23});
24
25};
26/* The following is the calling method */
$.focusblur ("#searchkey");
28});
</script>
31
<body>
<form action= "" method= "POST" >
<input name= "" type= "text" value= "Enter search keywords" id= "Searchkey"/>
<input name= "" type= "Submit" id= "searchbtn" value= "Search"/>
</form>
PNS <p>input loses focus and gets focus jquery Focus event plugin, <br/><strong style= "color: #F00" > Mouse click in the search box when the text disappears </ Strong>. </p>
38
</body>

Input loses focus and gets focus jquery Focus Event

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.