ajax實(shí)現(xiàn)提交時(shí)校驗(yàn)表單方法
本文實(shí)例為大家分享了ajax提交時(shí)校驗(yàn)表單的方法,供大家參考,具體內(nèi)容如下
方法一:
代碼示例:
巧妙設(shè)計(jì)之處:ajax提交的話,不能夠進(jìn)行校驗(yàn)攔截,設(shè)置一個(gè)flag來判斷,很巧妙的設(shè)計(jì)之處,故收藏!
function inserts(){ var flag = checkform(); if (flag == false) { return; } $.ajax({ //幾個(gè)參數(shù)需要注意一下 type: "post",//方法類型 datatype: "json",//預(yù)期服務(wù)器返回的數(shù)據(jù)類型 url: "<%=path %>/soldier/inserts" ,//url data: $('#form1').serialize(), success: function (data) { alert(data.msg); window.location.reload(true); }, error : function() { alert(data.msg); } }); } function checkform(){ var name = $("#name").val(); if (name.trim() == '') { alert("請輸入姓名!"); $("#name").focus(); return false; } var sex = $("#sex").val(); if (sex.trim() == '') { alert("請輸入性別!"); $("#sex").focus(); return false; } else if (sex.trim() != '男' && sex.trim() != '女') { alert("請輸入合法性別!"); $("#sex").val(''); $("#sex").focus(); return false; } var age = $("#age").val(); if (age.trim() == '') { alert("請輸入年齡!"); $("#age").focus(); return false; }else if(age.trim()==0 || age.trim()<=0 || age.trim()>150){ alert("請輸入合法年齡!"); $("#age").focus(); return false; } var politics_sstatus = $("#politics_sstatus").val(); if (politics_sstatus.trim() == '') { alert("請輸入政治面貌!"); $("#politics_sstatus").focus(); return false; } var tel = $("#tel").val(); if (tel.trim() == '') { alert("請輸入聯(lián)系電話!"); $("#tel").focus(); return false; }else if(tel.length<11 || tel.length>11){ alert("請輸入合法聯(lián)系電話!"); $("#tel").focus(); return false; } var id_card = $("#id_card").val(); if (id_card.trim() == '') { alert("請輸入身份證號碼!"); $("#id_card").focus(); return false; }else if(id_card.length<18 ||id_card.length>18){ alert("請輸入合法身份證號碼!"); $("#id_card").focus(); return false; } var appeal = $("#appeal").val(); if (appeal.trim() == '') { alert("請輸入主要訴求!"); $("#appeal").focus(); return false; } return true; }
頁面效果:
方法二:
這是一個(gè)登陸的ajax校驗(yàn)
代碼示例:
頁面的提交按鈕:
<input type="button" id="loginsubmit" value="登錄" />
js邏輯:
分析:當(dāng)用戶點(diǎn)擊按鈕的時(shí)候,會(huì)
<script type="text/javascript"> var redirecturl = "${redirect}"; var login = { /* 3、進(jìn)行賬號密碼的校驗(yàn) */ checkinput:function() { if ($("#loginname").val() == "") { alert("用戶名不能為空"); $("#loginname").focus(); return false; } if ($("#nloginpwd").val() == "") { alert("密碼不能為空"); $("#nloginpwd").focus(); return false; } return true; }, /* 4、進(jìn)行登錄 1.當(dāng)賬號密碼校驗(yàn)不為空的時(shí)候進(jìn)行后臺校驗(yàn) */ dologin:function() { $.post("/user/login", $("#formlogin").serialize(),function(data){ if (data.status == 200) { alert("登錄成功!"); if (redirecturl == "") { location.href = "http://localhost:8082"; } else { location.href = redirecturl; } } else { alert("登錄失敗,原因是:" + data.msg); $("#loginname").select(); } }); }, /* 2、進(jìn)行登錄校驗(yàn) */ login:function() { if (this.checkinput()) { this.dologin(); } } }; /* 1、頁面初始化的時(shí)候校驗(yàn)表單的數(shù)據(jù) 1.當(dāng)用戶點(diǎn)擊登錄的時(shí)候,綁定一個(gè)click事件 2.調(diào)用login對象的login方法,進(jìn)行賬號密碼校驗(yàn) */ $(function(){ $("#loginsubmit").click(function(){ login.login(); }); }); </script>
效果圖:
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持碩編程。