gpt4 book ai didi

javascript - 简单的 javascript 原型(prototype)示例

转载 作者:行者123 更新时间:2023-11-30 08:30:07 25 4
gpt4 key购买 nike

我试图给出一个简单的 javascript 原型(prototype)继承示例,但它没有运行。请帮忙!

HTML

<script> 
var animal = {eats: 'true'};
animal.prototype.name = "Lion";
console.log(animal);
</script>

最佳答案

是的,您可以向原型(prototype)添加属性...只要原型(prototype)实际存在即可。在您的情况下,您必须首先初始化原型(prototype)。例如:

var animal = {eats: 'true'};
animal.prototype={};
animal.prototype.name = "Lion";
console.log(animal);

但是定义原型(prototype)的更好方法是:

var Animal=function(name){
this.name=name;
}

// Add new members to the prototype:
Animal.prototype.toString=function()
{
return "animal "+this.name;
}

// Instance objects:
var a1=new Animal("panther");
console.log(a1.toString());

关于javascript - 简单的 javascript 原型(prototype)示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39268298/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com