延迟加载javascript,也就是页面加载完成之后再加载javascript,也叫on demand(按需)加载,一般有一下几个方法: What can your tired old page, once loaded and used and read, can do for your user? It can preload components needed by the next page, so when the users visit the next page, they hav…
当我们需要做图片轮播的时候,如果让图片提前下载到本地,用浏览器缓存起来,我们可以用Image对象: function preLoadImg(){ var img=new Image(); img.src="url" } 通过调用preLoadImg方法.我们可以实现图片预加载.但是如果想在图片加载后做其他的异步操作,我们可以使用图片的onload事件 function preLoadImg(url,callback){ var img=new Image(); img.src=&quo…