好的,所以我很欣赏 Javascript 不是 C# 或 PHP,但我一直回到 Javascript 中的一个问题 - 不是 JS 本身,而是我对它的使用。
我有一个功能:
function updateStatuses(){
showLoader() //show the 'loader.gif' in the UI
updateStatus('cron1'); //performs an ajax request to get the status of something
updateStatus('cron2');
updateStatus('cron3');
updateStatus('cronEmail');
updateStatus('cronHourly');
updateStatus('cronDaily');
hideLoader(); //hide the 'loader.gif' in the UI
}
事实是,由于 Javascript 迫切希望在代码中跳转,加载器永远不会出现,因为 'hideLoader' 函数会在之后直接运行。
我怎样才能解决这个问题?或者换句话说,我怎样才能让一个 javascript 函数按照我在页面上写的顺序执行......