```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>继承</title>
</head>
<body>
<script type="text/javascript">
// 1. 通过调用Person.call(this, name, age)继承Person的成员,但不包括原型的成员
function Person(name, age) {
this.type = "human";
this.name = name;
this.age = age;
this.getName = function() {
console.log(this.name)
}
}
function Student(name, age) {
// 继承Person所有的成员,但不包括原型的成员
Person.call(this, name, age);
}
var s1 = new Student("Jack", 21);
console.log(s1.type, s1.name, s1.age); // human Jack 21
s1.getName(); // 21
</script>
<script type="text/javascript">
// 2. 通过拷贝继承原型的成员
function Person(name, age) {
this.type = "human";
this.name = name;
this.age = age;
}
Person.prototype.getName = function() {
console.log(this.name);
}
function Student(name, age) {
// 继承Person所有的成员,但不包括原型的成员
Person.call(this, name, age);
}
for(var key in Person.prototype) {
// 通过拷贝来继承原型的成员
Student.prototype[key] = Person.prototype[key];
}
var s1 = new Student("Jack", 21);
s1.getName(); // Jack
</script>
<script type="text/javascript">
// 3. 利用原型特性继承
function Person (name, age) {
this.type = 'human'
this.name = name
this.age = age
}
Person.prototype.sayName = function () {
console.log('hello ' + this.name)
}
function Student (name, age) {
// 继承Person的所有成员,但不包括原型中的成员
Person.call(this, name, age)
}
// 利用原型的特性实现继承原型的所有成员
Student.prototype = new Person()
var s1 = new Student('张三', 18)
console.log(s1.type) // => human
s1.sayName() // => hello 张三
</script>
</body>
</html>
```
- js应用场景
- js组成
- js书写位置
- 浮点数精度问题
- undefined与null的区别
- 数据类型转换
- 运算符优先级
- 代码调试
- 函数
- 函数的定义和调用
- 函数的return细节
- 函数是一种数据类型
- this的指向
- 函数成员
- 函数闭包
- 作用域
- 预解析
- js对象
- 对象的创建与调用
- new关键字
- this关键字
- 构造函数创建对象
- 事件
- 数据类型
- 继承
- 杂项
- 如何阻止标签的默认行为
- 为一个标签绑定或移除任何一个事件
- 如何阻止事件的冒泡行为
- 事件的三个阶段
- 移动元素的条件
- 匀速动画函数封装
- 变速动画函数封装
- 获取元素的css属性值
- 数据类型判断方法
- 创建对象的7种写法
- 如何继承
- 为js内置对象添加原型函数
- 将局部变量转换为全局变量
- call函数的用法
- 沙箱
- 浅拷贝
- 深拷贝
- 对象赋值会改变对象
- 解析URL中的字符串
- 格式化日期
- 获取当前浏览器类型
- Vue3.x
- 调式工具Vue Devtools