 
	
	level 8
       
      
	
	
	  var $ = window.haha = function(selector, context) {
return new $.fn.init(selector, context);
};
$.fn = $.prototype = {
constructor : $
};
$.fn.init = function(selector, context) {
context = context || document;
if (!selector) return this;
//这个this是什么?
};
	
	2012年09月19日 08点09分
	1