成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

jQuery如何實現(xiàn)HTML頁面文本框模糊匹配查詢功能

小編給大家分享一下jQuery如何實現(xiàn)HTML頁面文本框模糊匹配查詢功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比彰武網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式彰武網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋彰武地區(qū)。費用合理售后完善,十多年實體公司更值得信賴。

可看到如下效果展示圖:

jQuery如何實現(xiàn)HTML頁面文本框模糊匹配查詢功能

接下來是代碼,純html+css+jquery的:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  <title>www.jb51.net jQuery模糊匹配查詢</title>
  <style type="text/css">
    #div_main {
      margin: 0 auto;
      width: 300px;
      height: 400px;
      border: 1px solid black;
      margin-top: 50px;
    }
    #div_txt {
      position: relative;
      width: 200px;
      margin: 0 auto;
      margin-top: 40px;
    }
    #txt1 {
      width: 99%;
    }
    #div_items {
      position: relative;
      width: 100%;
      height: 200px;
      border: 1px solid #66afe9;
      border-top: 0px;
      overflow: auto;
      display: none;
    }
    .div_item {
      width: 100%;
      height: 20px;
      margin-top: 1px;
      font-size: 13px;
      line-height: 20px;
    }
  </style>
</head>
<body>
  <div id="div_main">
    <!--表單的autocomplete="off"屬性設(shè)置可以阻止瀏覽器默認(rèn)的提示框-->
    <form autocomplete="off">
      <div id="div_txt">
        <!--要模糊匹配的文本框-->
        <input type="text" id="txt1" />
        <!--模糊匹配窗口-->
        <div id="div_items">
          <div class="div_item">周杰倫</div>
          <div class="div_item">周杰</div>
          <div class="div_item">林俊杰</div>
          <div class="div_item">林宥嘉</div>
          <div class="div_item">林妙可</div>
          <div class="div_item">唐嫣</div>
          <div class="div_item">唐家三少</div>
          <div class="div_item">唐朝盛世</div>
          <div class="div_item">奧迪A4L</div>
          <div class="div_item">奧迪A6L</div>
          <div class="div_item">奧迪A8L</div>
          <div class="div_item">奧迪R8</div>
          <div class="div_item">寶馬GT</div>
        </div>
      </div>
    </form>
  </div>
</body>
</html>
<script type="text/javascript">
  //彈出列表框
  $("#txt1").click(function () {
    $("#div_items").css('display', 'block');
    return false;
  });
  //隱藏列表框
  $("body").click(function () {
    $("#div_items").css('display', 'none');
  });
  //移入移出效果
  $(".div_item").hover(function () {
    $(this).css('background-color', '#1C86EE').css('color', 'white');
  }, function () {
    $(this).css('background-color', 'white').css('color', 'black');
  });
  //文本框輸入
  $("#txt1").keyup(function () {
    $("#div_items").css('display', 'block');//只要輸入就顯示列表框
    if ($("#txt1").val().length <= 0) {
      $(".div_item").css('display', 'block');//如果什么都沒填,跳出,保持全部顯示狀態(tài)
      return;
    }
    $(".div_item").css('display', 'none');//如果填了,先將所有的選項隱藏
    for (var i = 0; i < $(".div_item").length; i++) {
      //模糊匹配,將所有匹配項顯示
      if ($(".div_item").eq(i).text().substr(0, $("#txt1").val().length) == $("#txt1").val()) {
        $(".div_item").eq(i).css('display', 'block');
      }
    }
  });
  //項點擊
  $(".div_item").click(function () {
    $("#txt1").val($(this).text());
  });
</script>

以上是“jQuery如何實現(xiàn)HTML頁面文本框模糊匹配查詢功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!

文章標(biāo)題:jQuery如何實現(xiàn)HTML頁面文本框模糊匹配查詢功能
URL鏈接:http://jinyejixie.com/article34/pgehse.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄做網(wǎng)站、企業(yè)建站、虛擬主機(jī)微信小程序、定制開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)
兴隆县| 三亚市| 循化| 东宁县| 晋宁县| 南陵县| 织金县| 正镶白旗| 年辖:市辖区| 垫江县| 盐池县| 盐池县| 盐池县| 乌苏市| 庄浪县| 聂拉木县| 通化市| 巴林左旗| 松江区| 阿图什市| 房产| 宁陕县| 石城县| 安泽县| 永兴县| 清新县| 临城县| 临朐县| 晴隆县| 乡宁县| 远安县| 马尔康县| 龙泉市| 阜平县| 商水县| 东丽区| 福鼎市| 宾阳县| 渝北区| 旬邑县| 梓潼县|