1 Star 0 Fork 0

老付做菜/js继承方式

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
04寄生组合继承.html 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
老付做菜 提交于 2022-01-05 17:05 . 01上传几个文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
function Parent(name) {
this.name = name || '干饭人';
this.run = function () {
console.log(this.name + '干饭');
}
}
Parent.prototype.say = function () {
console.log('我是' + this.name);
}
function Child(name,time){
//在子类构造函数中通过Parent.call(this),继承父类的属性
Parent.call(this,name);
this.time = time || '十二点';
}
//Object.create()方法创建一个新对象,使用现有的对象来提供新创建的对象的__proto__。
//子类继承父类的原型
Child.prototype = Object.create(Parent.prototype);
Child.prototype.constructor = Child;
let son = new Child('干饭魂','十二点');
son.run();//干饭魂干饭
son.say();//我是干饭魂
console.log(son.time);//十二点
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laofu0514/js-inheritance-method.git
[email protected]:laofu0514/js-inheritance-method.git
laofu0514
js-inheritance-method
js继承方式
master

搜索帮助