gpt4 book ai didi

javascript - Ajax 请求之前的 Jquery 表单验证

转载 作者:行者123 更新时间:2023-11-30 09:40:28 27 4
gpt4 key购买 nike

我已经浏览了其他线程并使用了一个作为引用,但我仍然无法找到解决方案。
我的问题是:

现在我在单击按钮时调用一个函数,该函数在验证后进行了验证我正在尝试在提交处理程序中使用 ajax 请求发布数据,问题是我的字段正在验证但未调用 Ajax 请求。

<input type="button" value="Register" id="registerP" onclick="registerPatient()"  class="form-control input-sm btn-success ">

function registerPatient(){
$("#patientRegistration").validate({
rules: {
patientName: {
required: true,
textOnly: true
},
},
messages: {
patientName: {
required: "Please enter the full name",
},
},
submitHandler: function(form) {
$.ajax({
type: "POST",
url: "/LoginMavenSpringMVC/appointment/savePatient",
data: "patientName=" + patientName,
success: function(response){},
error: function(e){}
});
}
});
}

但是,如果我不使用验证并直接调用 Ajax,我就可以发布数据。请建议我要去哪里错了。

最佳答案

你可以尝试这样调用 jquery 表单验证并检查是否已验证:

$(document).ready(function(){
$("#patientRegistration").validate({
rules: {
patientName: {
required: true,
textOnly: true
},
},
messages: {
patientName: {
required: "Please enter the full name",
},
}
});
});

function registerPatient(){
var IsValid=$("#patientRegistration").valid();
if(IsValid){
var patientName=""; //value for patient name
$.ajax({
type: "POST",
url: "/LoginMavenSpringMVC/appointment/savePatient",
data: {"patientName": patientName},
success: function(response){},
error: function(e){}
});
}
}

关于javascript - Ajax 请求之前的 Jquery 表单验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41357530/

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