为何不用instanceof的方式来实现构造器的无new形式而用init?
var $$ = ajQuery = function(selector) {
if(!(this instanceof ajQuery)){
return new ajQuery(selector);
}
this.selector = selector;
return this
}
这种不是更直接吗?
var $$ = ajQuery = function(selector) {
if(!(this instanceof ajQuery)){
return new ajQuery(selector);
}
this.selector = selector;
return this
}
这种不是更直接吗?
2018-03-03
举报