DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jquery使用正則表達式驗證email地址的方法教程
jquery使用正則表達式驗證email地址的方法教程
編輯:JQuery特效代碼     

本文實例講述了jquery使用正則表達式驗證email地址的方法。分享給大家供大家參考。具體實現方法如下:

代碼如下:<html>
<head>
<title>jquery使用正則表達式驗證email地址</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
 $(function(){
  $(":input[name='email']").blur(function(){
   var email = $(this).val();
   var reg = /\w+[@]{1}\w+[.]\w+/;
   if(reg.test(email)){
    $(":input[name='check']").val("email合法");
   }else{
    $(":input[name='check']").val("請輸入正確的email地址");
   }
  });
 });
</script>
<style type="text/css">
h5{color:blue;}
</style>
</head>
<body>
<h5>jquery使用正則表達式驗證email地址</h5>
輸入Email地址:<input type="text" name="email" /><input type="text" name="check" style="border-width:0px;color:red" />
</body>
</html>

希望本文所述對大家的jQuery程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved