一段很有意思的代码
程序员文章站
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);
上一篇: ajax调用返回php接口返回json数据的方法(必看篇)
下一篇: Java 开发的几个注意点总结