1 Star 0 Fork 0

老付做菜/js继承方式

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
01原型链继承.html 1018 Bytes
一键复制 编辑 原始数据 按行查看 历史
老付做菜 提交于 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(){
}
//将父类的实例转为子类的原型
Child.prototype = new Parent();
let son = new Child();
son.say();//我是干饭人
son.run();干饭人干饭
/*
问题:1.原型对象(引用类型)的属性会被所有实例共享
2.创建子类实例(son)时无法向父类构造函数传参数
*/
</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

搜索帮助