2012-01-11 54 views

回答

1

如果您正在發佈,您現在想要使用.done而不是成功。

$.ajax({ 
type: "POST", 
url: "test.php", 
dataType: "json", 
data: "name=John&location=Boston" 
}).done(function(msg) { 

    if(parseInt(msg.status) == 1) 
    { 
     alert(msg.txt); 
    } 
    else if(parseInt(msg.status) == 0) 
    { 
     alert(msg.txt); 
    } 
});