2017-01-02 73 views
1

這裏是我當前的代碼:在AJAX成功回調中調用另一個PHP腳本?

$.ajax({ 
    type: "POST" 
    , url: "first-script.php" 
    , data: { 
     dataPoint: dataValue 
    } 
    , success: function (dataPath) { 
     // Do stuff with dataPath 

     // Call another PHP script once done. 
    } 
}); 

我停留在Call another PHP script once done.一部分。我怎樣才能做到這一點?它有可能嗎?有其他方法嗎?

+1

另一個Ajax請求? –

+1

只需添加另一個Ajax請求即可 –

+0

@RossWilson我是否需要嵌套請求? –

回答

0

巢與以前的Ajax請求的成功回調了ajax:

$.ajax({ 
type: "POST", 
url: "first-script.php", 
data: { 
     dataPoint: dataValue 
    }, 
success: function (dataPath) { 
    //Another request 
    $.ajax({}); 
}); 
相關問題