Jquery implements the common effects of the search box, And jquery implements the search box
This article describes how jquery achieves the common effects of the search box. Share it with you for your reference. The specific implementation method is as follows:
Copy codeThe Code is as follows:
<Html>
<Head>
<Meta http-equiv = "content-type" content = "text/html; charset = UTF-8"/>
<Title> jquery search box effect </title>
<Script type = "text/javascript" src = "jquery-1.8.2.min.js"> </script>
<Script type = "text/javascript">
$ (Function (){
Var searchBox = $ ("# search ");
SearchBox. focus (function (){
If (searchBox. val () = this. title ){
SearchBox. val ("" ).css ({'font-style': 'normal', 'color': '#000 '});
}
});
// When the cursor leaves the search box
SearchBox. blur (function (){
If (searchBox. val () = ""){
SearchBox.val(this.title).css ({'font-style': 'italic ', 'color':' # ccc '});
}
});
SearchBox. blur ();
});
</Script>
</Head>
<Body>
<Input id = "search" type = "text" title = "search" value = ""/> <input type = "submit" value = "search"/>
</Body>
</Html>
I hope this article will help you with jQuery programming.