var $$ = ajQuery = function(selector) { if(!(this instanceof ajQuery)){ return new ajQuery(selector); } this.selector = selector; return this}这种不是更直接吗?
好像是因为这样可以少用个if,减少代码长度增加性能。。