我現在有一個讓我困惑的問題。我使用ajax從網站獲取一些ID。一旦完成,我想將ID存儲在一個變量中作進一步處理。我有我的代碼佈局是這樣的:等待AJAX請求完成?
var ids;
function get_ids() { ... Get the ID's from the site and store them in the global variable ids ... }
get_ids();
alert(ids.length);
正如你可以看到IDS將始終爲0,因爲該腳本將繼續運行在get_ids Ajax請求有機會作出迴應前。
什麼是我想要做的最好的方法?我想等到get_ids完成。
鏈接似乎已關閉 – 2016-02-25 19:44:48