DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery實現搜索框常見效果的方法教程
jquery實現搜索框常見效果的方法教程
編輯:JQuery特效代碼     

本文實例講述了jquery實現搜索框常見效果的方法。分享給大家供大家參考。具體實現方法如下:

代碼如下:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>jquery搜索框效果</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'});
   }
  });
  //光標離開搜索框時
  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="搜索" />
</body>
</html>

希望本文所述對大家的jQuery程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved