欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

一段很有意思的代码

程序员文章站 2024-03-12 21:11:14
...

匿名函数,window参数,局部变量,闭包,原型链,继承
下面这个函数时都包括了

(function(){//局部作用域
    var jQuery=function(){
      return new jQuery.prototype.init();//桥接设计模式
    }
    jQuery.prototype={
        init:function(){

        }
    };
    jQuery.prototype.init.prototype=jQuery.prototype;
    window.$=jQuery;
})(window);
相关标签: 函数 jquery