一个用于按顺序加载外部js的脚本的库
This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/10108/54092/LoadScript.js
一个用于按顺序加载外部js的脚本的库
var urls = [
'http://cdnjs.net/ajax/libs/jquery/2.1.4/jquery.min.js',
'http://cdnjs.net/ajax/libs/jquery.blockUI/2.66.0-2013.10.09/jquery.blockUI.min.js'
];
var onReady = function onReady(){
$.blockUI();
};
loadScript(urls, onReady);