防止JS文件被加载多次的方法如下:
a.js:
!function(){
if(window['a.js']) return
window['a.js'] = true
console.log('code here')
}()
以上是正确方法。
使用百度cdn----
jquery.js除非你调用的时候随便加参数,比如
<script src="jquery.js?i=1"></script>
才会每次都重新下载,
不然通常会使用缓存里面的文件。
防止JS文件被加载多次的方法如下:
a.js:
!function(){
if(window['a.js']) return
window['a.js'] = true
console.log('code here')
}()
以上是正确方法。
使用百度cdn----
jquery.js除非你调用的时候随便加参数,比如
<script src="jquery.js?i=1"></script>
才会每次都重新下载,
不然通常会使用缓存里面的文件。