jQuery AJAX進行表單驗證例子

來源:互聯網
上載者:User


html頁面的代碼如下

<body>
<form action="form.php" method="post" id="form" onsubmit="return check();">
<table style="600px;" cellspacing="0">
<tr>
<td>使用者名稱</td>
<td><input type="text" name="name" id="name" /><span id="res"></span></td>
</tr>
<tr>
<td>密碼</td>
<td><input type="password" name="pass" id="pass" /></td>
</tr>
<tr>
<td>確認密碼</td>
<td><input type="password" name="repass" id="repass" /></td>
</tr>
<tr>
<td>手機</td>
<td><input type="text" name="phone" id="phone" /></td>
</tr>
<tr>
<td>郵箱</td>
<td><input type="text" name="email" id="email" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="提交" /><input type="reset" value="重設" /></td>
</tr>
</table>
</form>
</body>
<script type="text/javascript">
function check(){
var name = $("#name").val();
var pass = $("#pass").val();
var repass = $("#repass").val();
var phone = $("#phone").val();
var email = $("#email").val();
if(name == ''){
alert('使用者名稱不可為空');return false;
}
if(pass == ''){
alert('密碼不可為空');return false;
}else if(pass != repass){
alert('兩次密碼不一致');return false;
}
if(!((/^1[3|5|8|4][0-9]\d{8}$/).test(phone))){
alert('請輸入正確手機號碼');return false;
}
if(!((/^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[a-zA-Z]+$/).test(email))){
alert('請輸入正確郵箱');return false;
}
return true;
}
$(document).ready(function(){
$("#name").keyup(function(){
var xmlhttp;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}else{
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState==4 && xmlhttp.status==200){
document.getElementById("res").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","form.php?="+Math.random()+'&name='+$(this).val(),true);
xmlhttp.send();
})
})
</script>
 

form.php檔案如下:

<?php
header("content-type:text/html;charset=utf-8");
$name = $_GET['name'];
//為了測試方便,這裡設定預設使用者名只能為admin
if($name == 'admin'){
echo '<span style="color:green;">該使用者名稱可用</span>';
}else{
echo '<span style="color:red;">該不可用</span>';
}
?>
 

這裡偷懶了,預設使用者名只能填寫admin,實際運用的時候,可以對使用者名稱的存在性和格式等進行其他驗證

注意*必須引入jquery.js檔案

在輸入使用者名稱的時候,給input框一個keyup事件,通過AJAX向form.php檔案提交資料,檢測使用者名稱是否可用,這樣,使用者名稱可不可用,填寫 的時候就能知道了。

給表單一個onsubmit事件,當點擊提交按鈕的時候,進行密碼,電話,email的基礎驗證,如果錯誤,函數check返回false,阻止表單提交,只有當所有資料都正確填寫的時候,返回true;資料才提交給from.php檔案,進行相關資料操作。

其實這個還是是純jquery ajax了,只是js原生的一個ajax表驗證例子了,沒什麼優點,只供各位參考。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.