function Person(name){
this.name = name;
}
Person.prototype.each = function () {
console.log('吃东西');
var xiaoming = new Person('小明')
Person构造函数
慕勒3428872
相关分类