作者:Rekey
发布时间:January 15, 2010
分类:Develop,News
官方网站已经提供下载了.请猛击 http://jquery.com/
下载地址
http://code.jquery.com/jquery-1.4.min.js
http://code.jquery.com/jquery-1.4.js
更新说明:
- 常用方法的性能大幅提升。重写了大部分较早期的函数。
- 更容易使用的设置函数(setter function)。为所有对象新增了许多易用的设置函数。
- Ajax方面的改进。引入了许多Ajax和JSON处理方面的更新,包括HTML5元素的序列化。
- attribute(改进了.attr()的性能)、jQuery()核心函数、CSS(.css()性能有两倍提升)、特效和事件、DOM操作等也有显著改进。
作者:Rekey
发布时间:August 28, 2009
分类:Develop
研究jQuery代码之后出现的东西。从jQuery里抠出来的。
javascript代码:
var $ = window.$ = function (elem){ return new $.fn.init(elem); };
$.fn = $.prototype = {
init:function(elem){ this[0] = elem; return this; },
setbg : function(color){
var color = color?color:'#f00';
this[0].style.background = color;
return this;
},
setcolor : function(color){
var color = color?color:'#fff';
this[0].style.color = color;
return this;
}
};
$.fn.init.prototype = $.fn;