首頁 > web前端 > js教程 > JavaScript實作郵箱地址自動匹配功能代碼

JavaScript實作郵箱地址自動匹配功能代碼

高洛峰
發布: 2016-12-03 17:02:14
原創
1682 人瀏覽過

自動配對技術:簡單的來說就是「根據使用者輸入的資訊來提示一些相似項供使用者選擇」。具有很廣泛的應用,例如我們最常用的百度,當輸入一些搜尋內容後會自動匹配很多相關資訊;再比如我們最常用的輸入法,都是使用這種技術,當然這些都比較難了。下面這個例子是比較簡單的我們常用郵箱的匹配。程式碼如下:

1.css程式碼

#match_email
{
  margin-left:48px;
  overflow:auto; 
  display:none;
  width:200px;
  border:1px solid #aaa;
  background:#fff;
  max-height:100px;
  line-height:20px;
}
 
#match_email div
{
  text-decoration:none;
  color:#000;
  width:200px;
}
 
#match_email div:hover
{
  background:#aaa;  
}
 
input
{
  height:20px;  
  width:200px;
}
登入後複製

在css中將overflow設為auto以及將max-height設為100px表示,在該div高度超多100px就是自動產生捲軸。

2.html代碼

<div>
  邮箱:<input type="text" name="email" id="email" autocomplete="off" onkeyup="match_mail(this.value)"/>
  <div id="match_email"></div>
 
</div>
登入後複製

onkeyup時間表示只要手指離開按鈕就會觸發

3.js代碼

<script>
  //mailBoxs里存储用来匹配的串
  var mailBoxs = "@163.com @126.com @129.com"
  mailBoxs += " @qq.com @vip.qq.com @foxmail.com @live.cn @hotmail.com @sina.com @sina.cn @vip.sina.com";
  var matchmail = document.getElementById("match_email");
  var email = document.getElementById("email");
  function match_mail(keyword)
  {
    matchmail.innerHTML = "";
    matchmail.style.display = "none";
    if (!keyword)
      return;
    if (!keyword.match(/^[\w\.\-]+@\w*[\.]?\w*/))  
      return;
    keyword = keyword.match(/@\w*[\.]?\w*/);
    var matchs = mailBoxs.match(new RegExp(keyword+"[^ ]* ","gm"));
    if (matchs)
    {
      matchs = matchs.join("").replace(/ $/,"").split(" ");
      matchmail.style.display = "block";
      for (var i = 0; i < matchs.length; i++)
      {
        matchmail.innerHTML += &#39;<div>&#39;+matchs[i]+&#39;</div>&#39;; 
      }  
    }
  }
  //点击除了匹配框之外的任何地方,匹配框消失
  document.onclick = function(e)
  {
    var target = e.target;
    if (target.id != "matchmail")
      matchmail.style.display = "none";  
  }
  //将匹配框上鼠标所点的字符放入输入框
  matchmail.onclick = function(e)
  {
    var target = e.target;
    email.value = email.value.replace(/@.*/,target.innerHTML);
  }
</script>
登入後複製

在js中好幾處都用到了正規表示式: 
(1)keykey /@w*[.]?w*/);只取得@後面的內容,包括@; 
(2)var matchs = mailBoxs.match(new RegExp(keyword+"[^ ]* ","gm")) ;進行匹配,把mailBoxs中和keyword匹配的存入matchs中,[^ ]* 指遇到空格不匹配,參數”gm”中'g'指進行全局匹配,'m'指多行匹配; 
( 3)matchs = matchs.join("").replace(/ $/,"").split(" ");字串的結尾用空格匹配,$表示字串的結尾。

在兩個匿名函數中,e是在滑鼠點擊事件發生時系統自動產生的·,e.target是取得滑鼠所點的目前物件。


相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板