有效地组合js文件

时间:2015-11-18 20:25:59

标签: javascript

所以,我的主custom_js.js如下所示:

(function ($, root, undefined) {    
    $(function () {     
        'use strict';   
             //js goes here

        // Default line End
    }); 
})(jQuery, this);

现在,我有一个来自blazy lazy load的外部js file

我尝试将代码放在我的custom_js.js中,如下所示(只需复制和粘贴)

(function ($, root, undefined) {    
    $(function () {     
        'use strict';   
        //blazy v.1.5.1         
            (function(k,f){"function"===typeof.....
        // Default line End
    }); 
})(jQuery, this);

但是我收到了一个错误(" blazy"未找到)。

我只是想将外部js合并到我的custom_js文件中。

我做错了什么?

修改

这是设置:(页脚中的所有内容)

使用外部js。

  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>

  <script type="text/javascript" src="https://raw.githubusercontent.com/dinbror/blazy/master/blazy.min.js"></script>

  <script type="text/javascript" src="http://example.com/js/custom_js.js"></script>

1 个答案:

答案 0 :(得分:1)

custom_js.js结束时粘贴它怎么样:

(function ($, root, undefined) {    
    $(function () {     
        'use strict';   
             //js goes here

        // Default line End
    }); 
})(jQuery, this);

//blazy v.1.5.1         
(function(k,f){"function"===typeof.....