能不能解释下 this 的值?
var $$ = ajQuery = function(selector) {
//把原型上的init作为构造器
return new ajQuery.fn.init( selector );
}
ajQuery.fn = ajQuery.prototype = {
name: 'aaron',
init: function() {
console.log(this);
},
constructor: ajQuery
}
$$('body');
这里的this 打印出来是下面的值??这是什么意思?
ajQuery.fn.ajQuery.init