可能重复:
如果未加载,则从外部源加载 jQuery
如果 jquery 不加载,我该如何设置备份?
我发现并尝试了这个:
if (typeof jQuery == 'undefined') {
alert('jquery didn't load !');
loadScript("/here/jquery.min.js");
.... // this is where i'd want to say load from '/here/jquery.js'
}
但我不知道如何在脚本中调用脚本的 src。