仿百度谷歌搜索下拉框
來源:易賢網(wǎng) 閱讀:660 次 日期:2016-06-20 09:52:07
溫馨提示:易賢網(wǎng)小編為您整理了“仿百度谷歌搜索下拉框”,方便廣大網(wǎng)友查閱!

<!doctype html public -//w3c//dtd html 4.01 transitional//en http://www.w3c.org/tr/1999/rec-html401-19991224/loose.dtd>

<html>

<head>

<title>仿百度搜索下拉框,放搜索下拉框,仿谷歌搜索下拉框http://www.forasp.cn 原創(chuàng)轉(zhuǎn)載請注明</title> 

<meta content=仿谷歌百度搜索下來內(nèi)容顯示,可以通過ajax下拉也可以調(diào)用數(shù)據(jù)庫數(shù)據(jù),目前只是按照js調(diào)用了點內(nèi)容,參考下面代碼進行自行修改 name=description>

<meta content=谷歌,百度,下拉框,仿搜索下拉,下拉框搜索,搜索下拉內(nèi)容 name=keywords>

<style  type=text/css>

body{

    font-size:14px;}

</style>

<meta http-equiv=content-type content=text/html; charset=gb2312 />

</head>

<script language=javascript src=js/jquery-1.4.4.min.js></script>

<script language=javascript>

<!--

///開始定義全局內(nèi)容

var fouce_li_num = -1;///默認沒有選擇任何下拉內(nèi)容

var width_ = 300;//這里設(shè)置的是搜索框的寬度,目的為了與下面的列表寬度相同

var li_color = #fff;//默認的下拉背景顏色

var li_color_ = #ccc;//當下拉選項獲取焦點后背景顏色

$(function(){

 $(input[name=key]).keyup(function(event){

    var keycode = event.keycode;

    if(delkeycode(keycode))return;

    var key_ = $(this).val();//獲取搜索值

    var top_ = $(this).offset().top;//獲搜索框的頂部位移

    var left_ = $(this).offset().left;//獲取搜索框的左邊位移 ,網(wǎng)站制作學(xué)習(xí)網(wǎng)原創(chuàng)

    if(keycode==13){//enter search

        if(fouce_li_num>=0){

        $(this).val($.trim($(#foraspcn >li:eq(+fouce_li_num+)).text()));

        fouce_li_num=-1;

        }else{

           /////當沒有選中下拉表內(nèi)容時 則提交form    這里可以自定義提交你的搜索

        }

        $(#foraspcn).hide();

     }else if(keycode==40){//單擊鍵盤向下按鍵

        fouce_li_num++;

        var li_allnum = $(#foraspcn >li).css(background-color,li_color).size();

        if(fouce_li_num>=li_allnum&&li_allnum!=0){//當下拉選擇不為空時

        fouce_li_num=0;

        }else if(li_allnum==0){fouce_li_num--;return;}

        $(#foraspcn >li:eq(+fouce_li_num+)).css(background-color,li_color_);

     }else if(keycode==38){//點擊鍵盤向上按鍵

        fouce_li_num--;

        var li_allnum = $(#foraspcn >li).css(background-color,li_color).size();

        if(fouce_li_num<0&&li_allnum!=0){//當下拉選擇不為空時

        fouce_li_num=li_allnum-1;

        }else if(li_allnum==0){fouce_li_num++;return;}

        $(#foraspcn >li:eq(+fouce_li_num+)).css(background-color,li_color_);

     }else{//進行數(shù)據(jù)查詢,顯示查詢結(jié)果

       fouce_li_num=-1;

       $(#foraspcn).empty();

       ///ajax調(diào)用 這里使用的是 測試內(nèi)容

        ajax_demo();

        //ajax_getdata(key_);//如果使用ajax去前面的demo和//

        //賦值完畢后進行顯示

        $(#foraspcn).show().css({top:top_+22,left:left_});

     }

   });

   //當焦點從搜索框內(nèi)離開則,隱藏層

   $(body).click(function(){ $(#foraspcn).hide(); });

   ///創(chuàng)建隱藏的div,用來顯示搜索下的內(nèi)容

   $(body).append(<div id='foraspcn'></div>);

   $(#foraspcn).css({width:+width_+px,position:absolute,z-index:999,list-style:none,border:solid #e4e4e4 1px,display:none});//這里設(shè)置列下拉層的樣式,默認為隱藏的

});

//定義非開始運行函數(shù)

function delkeycode(keycode){//去除了不必要的按鍵反應(yīng),當比如刪除,f1 f2等按鍵時,則返回

  var array = new array();

  array =[8,16,19,20,27,33,34,35,36,45,46,91,112,113,114,115,116,117,118,119,120,121,122,123,145,192];

  for(i=0;i<array.length;i++){

      if(keycode==array[i]){return true;break;} 

     }

    return false;

}

//這是一個測試案例

function ajax_demo(){

    var data_array = [網(wǎng)站制作學(xué)習(xí)網(wǎng),網(wǎng)站制作,www.forasp.cn];

    for(i=0;i<data_array.length;i++){//這里進行數(shù)據(jù)附加 返回數(shù)據(jù)格式為 關(guān)鍵詞數(shù)組 

       $(#foraspcn).append(<li style='width:+width_+px;'>+data_array[i]+</li>);

         }   

   $(#foraspcn >li).mouseover(function(){$(this).css(background-color,li_color_);});

   $(#foraspcn >li).mouseout(function(){$(this).css(background-color,li_color);});

   $(#foraspcn >li).click(function(){$(input[name=key]).val($.trim($(this).text()));$(this).parent().hide();});      

}

////////////////這里是正式的ajax調(diào)用

function ajax_getdata(key){

  $.post(

     ajax_tag_search.php,

    {key:key},//ajax 的post不能提交中文提交,在動作頁面進行獲取后需要解碼,注意字符格式,然后搜索后返回

    function(data){//返回格式是json數(shù)據(jù),至少是個數(shù)組也可自定義,然后再這里進行操作

       data_array = eval((+data+));

       for(i=0;i<data_array.length;i++)//這里進行數(shù)據(jù)附加 返回數(shù)據(jù)格式為 關(guān)鍵詞數(shù)組

       $(#foraspcn).append(<li style='width:+width_+px;'>+data_array[i]+</li>);

       $(#foraspcn >li).mouseover(function(){$(this).css(background-color,li_color_);});

       $(#foraspcn >li).mouseout(function(){$(this).css(background-color,li_color);});

       $(#foraspcn >li).click(function(){$(input[name=key]).val($.trim($(this).text()));$(this).parent().hide();});      

      }

    );

}

-->

</script>

<body>

仿百度百度搜索下拉<input type=text name=key  size=40 maxlength=40>

</body>

</html>

更多信息請查看腳本欄目
易賢網(wǎng)手機網(wǎng)站地址:仿百度谷歌搜索下拉框
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇剩?/div>

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)