gpt4 book ai didi

javascript - Ajax 表单提交没有结果

转载 作者:搜寻专家 更新时间:2023-10-31 21:06:00 26 4
gpt4 key购买 nike

我有一个注册页面。我执行 JQuery 验证,然后对 regForm.php 进行 AJAX 调用以在所有字段都正确的情况下上传新用户 - 非常基本。

我的问题

验证工作正常,但当用户注册时,没有任何反应。我没有收到任何成功或错误消息,没有任何内容写入数据库,我在 Chrome 上的控制台也没有显示任何内容。所以我几乎被困住了。

我确定这只是一个小问题……也许我遗漏了什么?

HTML

 <div id="ajaxMsgDiv"></div>
<form name="registration-form" id="regForm" method="post" action="regForm.php">
<span id="sname-info" style="color:red"></span>
Name: <br /><input type="text" id="sname" name="fName" onfocus="this.value='';" /><br />
<span id="ssurname-info" style="color:red"></span>
Surname:<br /> <input type="text" id="ssurname" name="fSurname" onfocus="this.value='';" /> <br />
<span id="sspword-info" style="color:red"></span>
Password:<br /><input type="text" id="spword" name="fPword" onfocus="this.value='';" /><br />
<span id="sconfirmpword-info" style="color:red"></span>
Confirm Pword:<br /><input type="text" id="sconfirmpword" name="pwordConfirm" onfocus="this.value='';" /><br />
<span id="sEmail" style="color:red"></span>
Email:<br /><input type="text" id="sEmail" name="sEmail" onfocus="this.value='';" /><br />
<span id="sPhone-info" style="color:red"></span>
Phone:<br /><input type="text" name="sPhone" id="sPhone" onfocus="this.value='';" /><br />
Male<input type="radio" value="male" name="sex">Female<input type="radio" value="female" name="sex"><br />
<input type="submit" onclick="" value="Register" name="register" class="buttono" />
</form>

JQUERY

    <script type="text/javascript">
$(function () {
var form = $('#regForm');
var formMessages = $('#ajaxMsgDiv');

// Set up an event listener for the contact form.
$(form).submit(function (e) {
// Stop the browser from submitting the form.
e.preventDefault();

//do the validation here
if (!validateReg()) {
return;
}

// Serialize the form data.
var formData = $(form).serialize();

// Submit the form using AJAX.
$.ajax({
type: 'POST',
url: $(form).attr('action'),
data: formData
}).done(function (response) {
// Make sure that the formMessages div has the 'success' class.
$(formMessages).removeClass('error').addClass('success');

// Set the message text.
$(formMessages).html(response); // < html();

// Clear the form.
$('').val('')
}).fail(function (data) {
// Make sure that the formMessages div has the 'error' class.
$(formMessages).removeClass('success').addClass('error');

// Set the message text.
var messageHtml = data.responseText !== '' ? data.responseText : 'Oops! An error occured and your message could not be sent.';
$(formMessages).html(messageHtml); // < html()
});

});

function validateReg() {
var valid = true;

if (!$("#sname").val()) {
$("#sname-info").html("(required)");
$("#sname").css('background-color', '#FFFFDF');
valid = false;
}

if (!$("#ssurname").val()) {
$("#ssurname-info").html("(required)");
$("#ssurname").css('background-color', '#FFFFDF');
valid = false;
}

if (!$("#spword").val()) {
$("#spword-info").html("(required)");
$("#spword").css('background-color', '#FFFFDF');
valid = false;
}


if(!$("#sEmail").val()) {
$("#sEmail-info").html("(required)");
$("#sEmail").css('background-color','#FFFFDF');
valid = false;
}
if(!$("#sEmail").val().match(/^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/)) {
$("#sEmail-info").html("(invalid Email)");
$("#sEmail").css('background-color','#FFFFDF');
valid = false;
}

if(!$("#sPhone").val()) {
$("#sPhone-info").html("(required)");
$("#sPhone").css('background-color','#FFFFDF');
valid = false;
}

return valid;
}
})

最佳答案

您的验证函数始终返回“false”,这就是请求未发送的原因。发生这种情况是因为电子邮件验证从未通过:

if(!$("#sEmail").val()) {
}

反过来,这是因为您有一个 span 和一个具有相同 ID 的输入。尝试改变它:

<span id="sEmail" style="color:red"></span> 

查看我的 fiddle :http://jsfiddle.net/9cs65xfn/

关于javascript - Ajax 表单提交没有结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32330664/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com