-5

我有一个基本的 AJAX 请求,如下所示:

    $.ajax({
        url: 'check_password.php',
        type: 'post',
        data: 'password='+password,
        dataType: 'json',
        success: function(json) {
            if (json['success']) {
               //Continue with default action
            }else{
                //Password is invalid, stop the script and return an error
                preventDefault();
                $(".error").show();
            }
        }
4

1 回答 1

1

我建议完全阻止默认设置,然后通过.submit()在表单节点上使用提交表单(如果它是表单),从而绕过 jQuery 事件处理程序。

$("#myform").on("submit",function(event){
    event.preventDefault();
    var form = this;
    $.ajax({
        url: theurl,
        type: "POST",
        data: thedata
        dataType: "json"
    }).done(function(json){
        if (json.success) {
            form.submit();
        }
        else {
            $("#error").show();
        }
    });    
});
于 2013-02-22T22:24:41.703 回答