zoukankan      html  css  js  c++  java
  • js动态加载js css文件,可以配置文件后辍,防止浏览器缓存

    js的引用,在浏览器,或微信上访问经常会遇到文件改了,但就是没有更新的问题,使用此函数可以轻松解决缓存问题
    只需要把js的引用方式改为使用此函数加载即可

    源码如下:

    /**
    * js动态加载js css文件,可以配置文件后辍,防止浏览器缓存
    * @param {obj} config   加载资源配置 
    * @param {string} version  资源后辍配置
    */
    function jsCssLoader(config,version) {
      this.css = config.css;
      this.scripts = config.scripts;
      this.head = document.getElementsByTagName('head')[0];
    
      this.load = function() {
        this.loadCSS();
        this.loadScript();
      }
      this.loadCSS = function() {
        var that = this;
        this.css.forEach(function(csslink) {
          document.write(' ')
        });
      }
      this.loadScript = function() {
        var that = this;
        this.scripts.forEach(function(scriptlink){
          document.write('');
        });
      }
      this.load();
    }
    

    使用示例:

    jsCssLoader({
      css: [
          'resources/resources/quizii.css',
      ],
      scripts: [
        'js/quizii/language/js.js',
      ]
    },new Date().getTime());
    

    来源:jsfun.cn

  • 相关阅读:
    [Java123] JDBC and Multi-Threading 多线程编程学习笔记
    3:2D装换 [ 重点 ]
    2:属性选择器 + 结构伪类选择器 + 伪元素
    1:新增 H5 常用属性
    day2
    代码实操第一天
    1 滑动门
    css高级技巧
    11:网页布局总结
    10:定位
  • 原文地址:https://www.cnblogs.com/jsfuns/p/8590772.html
Copyright © 2011-2022 走看看