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是什么?
};