溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何基于JavaScript實現(xiàn)百度搜索框效果

發(fā)布時間:2021-04-13 14:20:57 來源:億速云 閱讀:131 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了如何基于JavaScript實現(xiàn)百度搜索框效果,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

具體代碼如下:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Document</title>
 <style>
  *{
   margin:0;
   padding:0;
   font-size:14px;
  }
  input{
   display:block;
   outline:none;
  }
  a{
   display:block;
   text-decoration: none;
   color:#000;
  }
  a:hover,a:active,a:target{
   text-decoration: none;
   color:#000;
  }
  ul,li{

   list-style:none;
  }
  .box{
   position:absolute;
   top:20px;
   left:50%;
   margin-left:-250px;
   width:500px;
  }
  .box input{
   width:300px;
   height:35px;
   padding:0 10px;
   border:1px solid #008000;
  }
  .box ul{
   display:none;
   position:relative;
   top:-1px;
   border:1px solid #008000;
  }
  .box ul li,.box ul li a{
   height:35px;
   line-height:35px;
   
  }
  .box ul li a{
   padding:0 10px;
  }
  .box ul li a:hover{
   background:#ccc;
  }
 </style>
</head>
<body>
 <div class='box'>
  <input type="text" id='searchInp'>
  <ul id='searchList'>
   <li><a href="javascript:;">111111111111</a></li>
   <li><a href="javascript:;">2222222222</a></li>
   <li><a href="javascript:;">33333333333</a></li>
   <li><a href="javascript:;">444444444444</a></li>
   <li><a href="javascript:;">5555555555555</a></li>
  </ul>
 </div>


 <script>
  //顯示
  /*
   1、文本框獲取焦點,并且文本框中有內容的時候
   2、在文本框中操作內容(新輸入/刪除),如果內容沒有清空,我們就顯示,否則就隱藏

  */
  //隱藏
  /*
   1、點擊頁面中其余的位置(除了點擊文本框和searchList里面的每一行)都隱藏;
   2、點擊searchList中的列表隱藏,但是還要把列表中的內容放到文本框中
  */
  //不管是獲取焦點onfocus,還是在里面編輯內容onkeyup,都是有內容顯示,沒內容隱藏
  var searchInp = document.getElementById('searchInp'),searchList = document.getElementById('searchList');
  searchInp.onkeyup = searchInp.onfocus = function(){
   var val = this.value.replace(/(^ +| +$)/g,'')//獲取文本框中的內容,并且去除它的首尾空格
   searchList.style.display = val.length > 0 ? "block" : "none";
  }

  document.body.onclick = function(e){
   e = e || window.event;
   e.target = e.target || e.srcElement;

   //如果事件源是#searchList下的a標簽,我們讓searchList隱藏,并且把當前點擊這個a中的內容放在文本框中
   if(e.target.tagName.toLowerCase()==="a" && e.target.parentNode.parentNode.id==="searchList"){
    searchList.style.display = "none";
    searchInp.value = e.target.innerHTML;
    return;
   }
   //如果事件源是文本框還需要單獨的處理
   // if(e.target.id === "searchInp"){
   //  return;
   // }
   searchList.style.display = "none";
  }

  //我們可以阻止一個容器中某些特殊性的元素,讓其不在委托的范圍內:我們只需要把這些不需要委托的阻止冒泡傳播即可
  searchInp.onclick = function(e){
   e = e || window.event;
   e.stopPropagation ? e.stopPropagation() : e.cancelBubble = "true";
  }
 </script>
</body>
</html>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“如何基于JavaScript實現(xiàn)百度搜索框效果”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

js
AI