我做了类似的事。
var person = function (){
this.print = function ()
{
console.log('person');
}
}
console.log(person.prototype);
这会记录Object{}
,但如果我这样做:
person.prototype.print = function () {
console.log('person');
}
console.log(person.prototype);
现在它打印整个对象及其 proto