這篇文章主要介紹了jQuery簡單實現驗證郵箱格式的相關資料,需要的朋友可以參考下
在表單提交的時候可能需要用到郵箱驗證代碼,代碼比較簡單,就是郵箱格式的判斷,如果說有難點可能就是關于正則表達式的使用,這里就不多說了,大家可以自行查詢,下面就給出一段可以使用的驗證代碼,復制黏貼即可。
代碼實例如下:
- <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
- <script type="text/javascript">
- $(document).ready(function(){
- $("#bt").click(function(){
- if($("#email1").val()=="")
- {
- alert("郵箱不能為空");
- return false;
- }
- var email=$("#email1").val();
- if(!email.match(/^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((/.[a-zA-Z0-9_-]{2,3}){1,2})$/))
- {
- alert("格式不正確!請重新輸入");
- $("#email1").focus();
- }
- })
- })
- </script>
- </head>
- <body>
- <form action="#">
- <input type="text" id="email1">
- <input type="button" value="提交" id="bt">
- </form>
以上代碼實現了簡單的郵箱驗證,代碼賦值黏貼后即可使用。
以上所述就是本文的全部內容了,希望大家能夠喜歡。
新聞熱點
疑難解答
圖片精選