1

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

1 回答 1

2

弄清楚了

$(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
        }
    });
    };
    };
}); 
});
于 2012-09-28T01:52:18.147 回答