Вы можете загрузить каждую после того, как предыдущая закончила загрузку, используя функцию обратного вызова $.getScript()
в качестве рекурсивного вызова функции.
//setup array of scripts and an index to keep track of where we are in the process
var scripts = ['script1.js','script2.js','script3.js'],
index = 0;
//setup a function that loads a single script
function load_script() {
//make sure the current index is still a part of the array
if (index < scripts.length) {
//get the script at the current index
$.getScript(scripts[index], function () {
//once the script is loaded, increase the index and attempt to load the next script
console.log('Loaded: ' + scripts[index]);
index++;
load_script();
});
}
}
То, что происходит в вашем коде, заключается в том, что скрипты запрашиваются одновременно и, поскольку они загружаются асинхронно, они возвращаются и выполняются в произвольном порядке.
Обновление
Я не проверял это, но если сценарии размещаются локально, вы можете попытаться получить их в виде простого текста, а затем сохранить весь код в переменных до тех пор, пока они не будут загружены, и тогда вы сможете оценить сценарии по порядку:
var scripts = ['script1.js','script2.js','script3.js'],
//setup object to store results of AJAX requests
responses = {};
//create function that evaluates each response in order
function eval_scripts() {
for (var i = 0, len = scripts.length; i < len; i++) {
eval(responses[scripts[i]]);
}
}
$.each(scripts, function (index, value) {
$.ajax({
url : scripts[index],
//force the dataType to be `text` rather than `script`
dataType : 'text',
success : function (textScript) {
//add the response to the `responses` object
responses[value] = textScript;
//check if the `responses` object has the same length as the `scripts` array,
//if so then evaluate the scripts
if (responses.length === scripts.length) { eval_scripts(); }
},
error : function (jqXHR, textStatus, errorThrown) { /*don't forget to handle errors*/ }
});
});