我必须在加载应用程序启动页面之前加载需要加载的外部Javascript文件。并且js文件中的变量需要由应用程序中的所有jsp文件使用...
我怎样才能做到这一点?
答案 0 :(得分:0)
这是您可以加载外部script
的方式:
var script = document.createElement('script');
script.onload = function () {
//do stuff with the script
};
script.src = something;
document.head.appendChild(script); //or something of the likes
如果在加载script
之后必须执行一些Javascript代码,则将function
包裹在Javascript上,然后从onload
的{{1}}进行调用。