blog icon indicating copy to clipboard operation
blog copied to clipboard

Javascript 框架设计精简索引

Open ascoders opened this issue 8 years ago • 0 comments

种子模块

命名空间

var _$ = window.$ // 把非 jquery 产生的 $ 存起来

jQuery.extend({
    noConflict: function () {
        window.$ = _$ // 用非 jquery 的 $ 覆盖自己的 $
        return jQuery // 返回自身,接住的就是 jquery,例如 var my_$ = $.noConflict()
    }
})

ascoders avatar Oct 31 '16 12:10 ascoders