Rekey's WebSpace

Just So So ...

Home Develop Life Music News 关于

类jQuery的东东

作者: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;

标签: javascript, jQuery

添加新评论 »