延迟加载JS文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了延迟加载JS文件相关的知识,希望对你有一定的参考价值。

  1. loadExternalJScript : function(scriptURL, id){
  2. var script = document.createElement('script');
  3. script.src = scriptURL;
  4. script.id = id;
  5. script.type = 'text/javascript';
  6. script.charset = 'utf-8';
  7. // Add the script to the head, upon which it will load and execute.
  8. var head = document.getElementsByTagName('head')[0];
  9. head.appendChild(script);
  10. }

以上是关于延迟加载JS文件的主要内容,如果未能解决你的问题,请参考以下文章

延迟加载JS文件

JavaScript 延迟加载JS文件

延迟加载基于控制器命名空间约定的外部 JS/CSS 文件?

延迟加载 - 它何时下载块文件?

延迟加载js文件

介绍同步加载异步加载延迟加载