使用JSON,Ajax请求不成功

时间:2012-09-01 16:57:17

标签: php jquery

$.ajax({        
    //check all selections are made
    type: "POST",
    url: "checkin_process.php",
    dataType: "json",
    data: dataString,                                    
    sucsess: function(){
        // alert(data.success);
        alert("sucess");
        $("#message").fadeOut(5000);  
    },
    statusCode: {            
        406: function() {                
            alert("sucess");
        },            
        409: function() {                
            alert("err");
        }            
    }
});

在此代码中,ajax请求仅返回错误而不是成功。

但是在json文件中它正确地返回了json编码数据。知道什么是错的吗?

0 个答案:

没有答案