我正在尝试使用 jQuery 验证输入。如果输入经过验证并且 ajax 返回 success
然后我需要允许表单提交。我正在阻止提交e.preventDefault
我的脚本是:
$("#spsignin").submit(function(e){
if (e.preventDefault) {
e.preventDefault();
} else {
e.returnValue = false;
}
var uname = $("input#name").val();
var pass = $("input#password").val();
$.ajax({
type: "POST",
url: "Login",
data: 'uname=' + encodeURIComponent(uname) + '&' + 'pass='
+ encodeURIComponent(pass),
dataType: "json",
success: function( data, textStatus, jqXHR) {
if (data == true) {
$("#spsignin").submit();
} else { //display error message
$("#error").show(1500).css({visibility: "visible"});
$("#error").append("<b>Invalid Username/Email or Password</b>");
}
},
//If there was no resonse from the server
error: function(jqXHR, textStatus, errorThrown) {
console.log("Something really bad happened " + textStatus);
$("#error").html(jqXHR.responseText);
},
});
在success
它执行提交操作但它重复执行操作。表示 Firebugpost
在其控制台中显示请求数。post
以及响应的请求数量。
形式是:
<form action="Signin" method="get" id="spsignin">
<input type="text" name="uname" class="text validate[required]"
id="name" placeholder="Username"/>
<input type="password" name="pass" class="text validate[required]"
id="password" placeholder="Password"/>
<input type="submit" value="" id="memberlogin"/>
</form>
请任何人告诉我如何在 ajax 上提交表单success
...谢谢...