延迟加载js文件
Posted niuxiaoxian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了延迟加载js文件相关的知识,希望对你有一定的参考价值。
<!doctype html>
<
html
lang
=
"en"
>
<
head
>
<
meta
charset
=
"UTF-8"
>
<
title
>Document</
title
>
</
head
>
<
body
>
<
script
>
setTimeout(function(){ //延迟5秒
var body = document.getElementsByTagName(‘body‘)[0];
var scr = document.createElement(‘script‘);//创建一个script节点
scr.setAttribute(‘src‘,‘test1.js‘); //给script节点添加路径
body.appendChild(scr);
},5000);
</
script
>
</
body
>
</
html
>
以上是关于延迟加载js文件的主要内容,如果未能解决你的问题,请参考以下文章