<script>
Function.pototype={
eat:function(){
console.log("说话");
}
}
function Person(name,age){
this.name=name;
this.age=age;
this.country=function(){
console.log(this.name+"来自"+country);
};
}
Person.eat();
</script>
*****为什么最后报错说 eat()不是一个function啊?*****
改成这样吧: