加载Js文件应用程序加载

时间:2016-05-05 07:23:26

标签: javascript jsp

我必须在加载应用程序启动页面之前加载需要加载的外部Javascript文件。并且js文件中的变量需要由应用程序中的所有jsp文件使用...

我怎样才能做到这一点?

1 个答案:

答案 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}}进行调用。