JS延迟加载的方式

延迟加载JavaScript,也就是页面加载完成之后再加载javascript,也叫on demand(按需)加载,一般有一下几个方法:

1. 动态创建DOM方式

head append script tag

[javascript]  view plain  copy
  1. window.onload = function () {  
  2.     setTimeout(function () {  
  3.   
  4.         // reference to <head>    
  5.         var head = document.getElementsByTagName('head')[0];  
  6.   
  7.         // a new CSS    
  8.         var css = document.createElement('link');  
  9.         css.type = "text/css";  
  10.         css.rel = "stylesheet";  
  11.         css.href = "new.css";  
  12.   
  13.         // a new JS    
  14.         var js = document.createElement("script");  
  15.         js.type = "text/javascript";  
  16.         js.src = "new.js";  
  17.   
  18.         // preload JS and CSS    
  19.         head.appendChild(css);  
  20.         head.appendChild(js);  
  21.   
  22.         // preload image    
  23.         new Image().src = "new.png";  
  24.   
  25.     }, 1000);  
  26. };    
2. document.write

[javascript]  view plain  copy
  1. <script language="javascript" type="text/javascript">    
  2.     function include(script_filename) {    
  3.         document.write('<' + 'script');    
  4.         document.write(' language="javascript"');    
  5.         document.write(' type="text/javascript"');    
  6.         document.write(' src="' + script_filename + '">');    
  7.         document.write('</' + 'script' + '>');    
  8.     }    
  9.         
  10.     var which_script = '1.js';    
  11.     include(which_script);    
  12. </script>  
3. Iframe

和第一种类似,但是script tag是放到iframe的document里面。

[javascript]  view plain  copy
  1. window.onload = function () {  
  2.     setTimeout(function () {  
  3.   
  4.         // create new iframe    
  5.         var iframe = document.createElement('iframe');  
  6.         iframe.setAttribute("width""0");  
  7.         iframe.setAttribute("height""0");  
  8.         iframe.setAttribute("frameborder""0");  
  9.         iframe.setAttribute("name""preload");  
  10.         iframe.id = "preload";  
  11.         iframe.src = "about:blank";  
  12.         document.body.appendChild(iframe);  
  13.   
  14.         // gymnastics to get reference to the iframe document    
  15.         iframe = document.all ? document.all.preload.contentWindow : window.frames.preload;  
  16.         var doc = iframe.document;  
  17.         doc.open(); doc.writeln("<html><body></body></html>"); doc.close();  
  18.   
  19.         // create CSS    
  20.         var css = doc.createElement('link');  
  21.         css.type = "text/css";  
  22.         css.rel = "stylesheet";  
  23.         css.href = "new.css";  
  24.   
  25.         // create JS    
  26.         var js = doc.createElement("script");  
  27.         js.type = "text/javascript";  
  28.         js.src = "new.js";  
  29.   
  30.         // preload CSS and JS    
  31.         doc.body.appendChild(css);  
  32.         doc.body.appendChild(js);  
  33.   
  34.         // preload IMG    
  35.         new Image().src = "new.png";  
  36.   
  37.     }, 1000);  
  38. };    
4. Iframe static page  

直接把需要加载东西放到另一个页面中

[javascript]  view plain  copy
  1. window.onload = function () {  
  2.     setTimeout(function () {  
  3.   
  4.         // create a new frame and point to the URL of the static    
  5.         // page that has all components to preload    
  6.         var iframe = document.createElement('iframe');  
  7.         iframe.setAttribute("width""0");  
  8.         iframe.setAttribute("height""0");  
  9.         iframe.setAttribute("frameborder""0");  
  10.         iframe.src = "preloader.html";  
  11.         document.body.appendChild(iframe);  
  12.   
  13.     }, 1000);  
  14. };  

5. Ajax eval

用ajax下载代码,然后用eval执行

6. Ajax Injection

用ajax下载代码,建立一个空的script tag,设置text属性为下载的代码

7.defer 属性

该属性用来通知浏览器,这段脚本代码将不会产生任何文档内容。例如 JavaScript代码中的document.write()方法将不会骑作用,浏览器遇到这样的代码将会忽略,并继续执行后面的代码。属性只能是 defer,与属性名相同。在HTML语法格式下,也允许不定义属性值,仅仅使用属性名。加上 defer 等于在页面完全在入后再执行.

<script src="file.js" defer></script>  

8.async 属性

不能保证脚本会按顺序执行。它们将在onload 事件之前完成。async和defer一样,都不会阻塞其他资源下载,所以不会影响页面的加载,但在async的情况下,js文档一旦下载完毕就会立刻执行,所以很有可能不是按照原本的顺序来执行

<script src="file.js" async></script>  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值