這次帶給大家JS email信箱/郵件地址正規篩選實現,JS email信箱/郵件地址正規篩選的注意事項有哪些,下面就是實戰案例,一起來看一下。
簡言
在做使用者註冊時,常會用到郵件信箱/郵件地址的正規表示式。本文列舉了幾種方案,大家可以依照自己的專案狀況,選擇最適合的方案。
方案1 (常用)
#規則定義如下:
以大寫字母[A-Z]、小寫字母[a-z]、數字[0-9]、下滑線[_]、減號[-]及點號[.]開頭,並需要重複一次至多次[ ]。
中間必須包括@符號。
@之後需要連接大寫字母[A-Z]、小寫字母[a-z]、數字[0-9]、下滑線[_]、減號[-]及點號[ .],並需重複一次至多次[ ]。
結尾必須是點號[.]連接2至4位的大小寫字母[A-Za-z]{2,4}。
利用上述規則給出如下正規表示式:
var pattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
完整測試程式碼
nbsp;HTML> <meta> <title>邮箱/邮件地址的正则表达式及分析(JavaScript,email,regex)</title> <p></p> <script> var pattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/; w("pattern.test('cn42du@163.com') = "+pattern.test('cn42du@163.com')+";"); w("pattern.test('ifat3@sina.com.cn') = "+pattern.test('ifat3@sina.com.cn')+";"); w("pattern.test('ifat3.it@163.com') = "+pattern.test('ifat3.it@163.com')+";"); w("pattern.test('ifat3_-.@42du.cn') = "+pattern.test('ifat3_-.@42du.cn')+";"); w("pattern.test('ifat3@42du.online') = "+pattern.test('ifat3@42du.online')+";"); w("pattern.test('毛三胖@42du.cn') = "+pattern.test('毛三胖@42du.cn')+";"); function w(val) { document.getElementById("main").innerHTML += val +"<br />"; } </script>
測試結果:
pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = true;
pattern.test('ifat3.it@163. com') = true;
pattern.test('ifat3_-.@42du.cn') = true;
pattern.test('ifat3@42du.online') = false;
pattern.test ('毛三胖@42du.cn') = false;
pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = true;
pattern.test('ifat3.it@163.com') = true;
pattern.test('ifat3_-.@42du.cn') = true;
pattern.test(' ifat3@42du.online') = false;
pattern.test('毛三胖@42du.cn') = false;
方案1說明
方案1是最常用的郵件正規表示式驗證方案,也適合大多數的應用程式場景。從以上測試可以看出,此表達式不支援.online及.store結尾的網域名稱。如需相容這類網域名稱(大於4位元),調整正規結尾{2,4}的限制部分即可(例:{2,8})。另一個問題是郵件使用者名稱不能包括中文。
方案2 (修訂方案1)
規則補充如下:
使用者名稱可以包含中文[\u4e00- \u9fa5]
網域結尾最長可為8位元{2,8}
更新後的正規表示式如下:
var pattern = /^([A-Za-z0-9_\-\.\u4e00-\u9fa5])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,8})$/;
完整測試程式碼
nbsp;HTML> <meta> <title>邮箱/邮件地址的正则表达式及分析(JavaScript,email,regex)</title> <p></p> <script> var pattern = /^([A-Za-z0-9_\-\.\u4e00-\u9fa5])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,8})$/; w("pattern.test('cn42du@163.com') = "+pattern.test('cn42du@163.com')+";"); w("pattern.test('ifat3@sina.com.cn') = "+pattern.test('ifat3@sina.com.cn')+";"); w("pattern.test('ifat3.it@163.com') = "+pattern.test('ifat3.it@163.com')+";"); w("pattern.test('ifat3_-.@42du.cn') = "+pattern.test('ifat3_-.@42du.cn')+";"); w("pattern.test('ifat3@42du.online') = "+pattern.test('ifat3@42du.online')+";"); w("pattern.test('毛三胖@42du.cn') = "+pattern.test('毛三胖@42du.cn')+";"); function w(val) { document.getElementById("main").innerHTML += val +"<br />"; } </script>
測試結果:
pattern.test('cn42du@163.com') = true;
pattern.test('ifat3@sina.com.cn') = true;
pattern.test('ifat3.it@163.com') = true;
pattern.test('ifat3_-.@ 42du.cn') = true;
pattern.test('ifat3@42du.online') = true;
pattern.test('毛三胖@42du.cn') = true;
方案3 (安全)
在手機驗證碼出現之前,差不多信箱驗證是保證使用者唯一性的唯一條件。而臨時郵箱(也稱為10分鐘郵箱或一次性郵箱)的出現,則使得郵箱驗證及帳戶啟動這種機制失去了意義。而臨時郵箱的地址是不可枚舉的,我們只能才採取白名單的方式,只允許有限的郵箱域名通過驗證。
依方案1的補充如下規則:
郵件網域只能是163.com,qq.com或42du.cn。
給出正規表示式如下:
var pattern = /^([A-Za-z0-9_\-\.])+\@(163.com|qq.com|42du.cn)$/;
完整測試程式碼
nbsp;HTML> <meta> <title>邮箱/邮件地址的正则表达式及分析(JavaScript,email,regex)</title> <p></p> <script> var pattern = /^([A-Za-z0-9_\-\.])+\@(163.com|qq.com|42du.cn)$/; w("pattern.test('cn42du@163.com') = "+pattern.test('cn42du@163.com')+";"); w("pattern.test('ifat3@sina.com.cn') = "+pattern.test('ifat3@sina.com.cn')+";"); w("pattern.test('ifat3.it@163.com') = "+pattern.test('ifat3.it@163.com')+";"); w("pattern.test('ifat3_-.@42du.cn') = "+pattern.test('ifat3_-.@42du.cn')+";"); w("pattern.test('ifat3@42du.online') = "+pattern.test('ifat3@42du.online')+";"); w("pattern.test('毛三胖dd@42du.cn') = "+pattern.test('毛三胖@42du.cn')+";"); function w(val) { document.getElementById("main").innerHTML += val +"<br />"; } </script>
測試結果:
pattern.test('cn42du@163.com') = true; pattern.test('ifat3@sina.com.cn') = false; pattern.test('ifat3.it@163.com') = true; pattern.test('ifat3_-.@42du.cn') = true; pattern.test('ifat3@42du.online') = false; pattern.test('毛三胖dd@42du.cn') = false;
方案3驗證雖然能保證安全性,但如果白名單太長會造成模式字串太長。這時可以將信箱網域白名單寫成數組,利用正規表示式做初步驗證,用白名單做網域的二次驗證。
现给出邮箱验证函数如下:
var isEmail = function (val) { var pattern = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/; var domains= ["qq.com","163.com","vip.163.com","263.net","yeah.net","sohu.com","sina.cn","sina.com","eyou.com","gmail.com","hotmail.com","42du.cn"]; if(pattern.test(val)) { var domain = val.substring(val.indexOf("@")+1); for(var i = 0; i<p style="text-align: left;">上述isEmail()函数列举了常用的11种邮箱域名,大家可以根据需要适当补充或删减。</p><p>相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!</p><p>推荐阅读:</p><p><a href="http://www.php.cn/js-tutorial-398128.html" target="_blank">JS数组方法使用步骤详解</a><br></p><p><a href="http://www.php.cn/js-tutorial-398124.html" target="_blank">行内元素padding和margin在什么情况下无效</a><br></p>
以上是JS email信箱/郵件地址正規篩選實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!