我试图在 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
}
});
};
});
});