gpt4 book ai didi

php - 使用 Spry 验证的 Ajax 提交

转载 作者:行者123 更新时间:2023-11-30 18:18:50 88 4
gpt4 key购买 nike

我试图在 ajax 运行之前验证我的表单,但似乎无法正确编码以实现此目的。

如果我将它们分开,我可以使用 ajax 发布而无需验证或验证,但它以默认方式发布

这是我目前正在尝试的代码

$(document).ready(function(){
// ajax code start
$('#form').on('submit', function (e){
e.preventDefault();
if (spry.widget.form.validate('#form') == true)
{
$.ajax({
type: "POST",
url: "localProxy.php",
data: $('#form').serialize(),
success: function (response) {
document.location = '/thank-you';
// do something!
},
error: function () {
alert('There was a problem!'); // handle error
}
});
};
});
});

最佳答案

想通了

$(document).ready(function(){
// ajax code start
$('#form').on('submit', function (e){
e.preventDefault();
Spry.Widget.Form.onSubmit = function(e, form)
{
if (Spry.Widget.Form.validate(form) == false) {
return false;
}
{
$.ajax({
type: "POST",
url: "localProxy2.php",
data: $('#consult').serialize(),
success: function (response) {
document.location = '/thank-you';
// do something!
},
error: function () {
alert('There was a problem!'); // handle error
}
});
};
};
});
});

关于php - 使用 Spry 验证的 Ajax 提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12614598/

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