1.推荐所有的script标签尽可能放到body标签的底部,以尽量减少对整体页面下载速度的影响。
2.组织脚本
减少页面包含的scirpt标签数量,可以把多个文件合并成一个。
3.无阻塞脚本
1).延迟脚本
defer:html解析完才加载,执行顺序和加载顺序有关。
async:html加载完就执行,执行顺序和加载顺序无关。
2).动态脚本元素(推荐)
文件在该元素被添加到页面时开始下载。这种技术的中i单在于:无论在何时启动下载,文件的下载和执行过程呢个不会阻塞页面其他进程。
但是有兼容问题,解决办法如下:
function loadScript(url, callback) {var script = document.createElement_x_x('script');script.type = "text/javascript";if (script.readyState) {//IEscript.onreadystatechange = function () {if (script.readyState == 'loaded' || script.readyState == 'complete') {script.onreadystatechange = null;callback();}};}else{//其他浏览器script.onload=function(){callback();}};script.scr=url;document.getElementsByTagName('head')[0].a(script);};loadScript('file.js',function(){console.log('file.js is loaded')});
loadScript('file.js',function(){loadScript('file2.js',function(){loadScript('file3.js',function(){console.log('all is load')})})});复制代码
XMLHttpRequest脚本注入(大型web不推荐)
var xhr=new XMLHttpRequest();xhr.open('get','file.js',true);xhr.onreadystatechange=function(){if(xhr.readyState==4){if(xhr.status>=200&&xhr.status<<span style="color: #b5cea8;">300||xhr.status==304){var script=document.createElement_x_x('script');script.type='text/javascript';script.text='xhr.responseText';document.body.a(script)}}};xhr.send(null);复制代码
总结:减少JavaScript对性能的影响。
1./body闭合标签之前,将所有的script标签放在页面底部。这样确保在脚本执行前页面已经完成了渲染。
2.合并脚本,页面中的script标签也少,加载也就越快,响应也就越快,无论外链还是内嵌脚本都是如此。
3.使用多种无阻塞的javascript方法:
3.1使用script的方法defer属性。
3.2使用动态创建script元素来下载并执行代码。
3.3使用XHR对象下载javascript代码并注入页面中