使用apply方法实现javascript中的对象继承
使用apply方法实现javascript中的对象继承
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下://使用apply方法实现对象继承functionParent(username){this.username=usern...

复制代码 代码如下:

<script type="text/javascript">

//使用apply方法实现对象继承

function Parent(username) {

this.username = username;

this.sayHello = function() {

alert(this.username);

}

}

function Child(username, password) {

Parent.apply(this, new Array(username));

//和下面一样

//Parent.apply(this, [username]);

this.password = password;

this.sayWorld = function() {

alert(this.password);

}

}

var parent = new Parent("zhangsan");

var child = new Child("lisi", "123");

parent.sayHello();

child.sayHello();

child.sayWorld();

</script>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类