0

我试图在成功的 ajax 函数中使用 if else 语句,但值始终为 false 并且插入的数据
我使用 jQuery v1.7.1,这里是我的代码

// Contact Submiting form
function Contact_form(form, options){       
    $.ajax({
        url: 'contact.php',
        data: $('#contactform').serialize(),
        success: function(data){    
              if(data.check == '1'){ // if Ajax respone data.check =1 or Complete
                 $('.notifications').slideDown(function(){
                            setTimeout("$('.notifications').slideUp();",7000);                              
                        }); // Show  notifications box
                 $('#contactform').get(0).reset();  //  reset form

              }
              else if(data.check == '0'){ 
                  $('#preloader').fadeOut(400,function(){ $(this).remove(); });     
                  alert("No complete");
                  return false;
              }

        },
        cache: false,type: 'POST',dataType: 'json'
    });
}
4

2 回答 2

1

您可以尝试在逻辑语句中使用 data.result

于 2012-08-04T03:16:38.610 回答
1

如果 else 在成功功能使用中不好

function Contact_form(form, options){       
    $.ajax({
        url: 'contact.php',
        data: $('#contactform').serialize(),
        success: function(data){
                 $('.notifications').slideDown(function(){
                        setTimeout("$('.notifications').slideUp();",7000);                              
                    }); // Show  notifications box
                 $('#contactform').get(0).reset();  //  reset form
                    unloading();     //  remove loading
        },
        error: function(data){  
              $('#preloader').fadeOut(400,function(){ $(this).remove(); });     
                            alert("No complete");
                return false;
        },
        cache: false,type: 'POST',dataType: 'json'
    });
}
于 2012-08-04T03:32:40.970 回答