匿名函数,window参数,局部变量,闭包,原型链,继承
下面这个函数时都包括了
(function(){//局部作用域
var jQuery=function(){
return new jQuery.prototype.init();//桥接设计模式
}
jQuery.prototype={
init:function(){
}
};
jQuery.prototype.init.prototype=jQuery.prototype;
window.$=jQuery;
})(window);