延迟加载JS文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了延迟加载JS文件相关的知识,希望对你有一定的参考价值。
loadExternalJScript : function(scriptURL, id){ var script = document.createElement('script'); script.src = scriptURL; script.id = id; script.charset = 'utf-8'; // Add the script to the head, upon which it will load and execute. var head = document.getElementsByTagName('head')[0]; head.appendChild(script); }
以上是关于延迟加载JS文件的主要内容,如果未能解决你的问题,请参考以下文章