2008-06-26
JavaScript继承
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
/*People Class*/
var People=function(height,weight){
this.height=height;
this.weight=weight;
};
People.prototype.say=function(){
return "Hi,My Height "+this.height+"cm & Weight "+this.weight+"kg.";
};
/*Man Class*/
var Man=function(height,weight){
this.height=height;
this.weight=weight;
};
Man.prototype.say=People.prototype.say;
Man.prototype.manSay=function(){
return "I am Man!"+" "+this.say();
};
/*Test*/
var p=new People(170,160);
alert(p.say());
var man=new Man(175,165);
alert(man.say());
alert(man.manSay());
</script>
</head>
<body>
</body>
</html>
可能说这是JavaScript继承不太准确,但本人认为这种方式可以实现继承类似的功能。
- 14:25
- 浏览 (35)
- 评论 (0)
- 分类: JavaScript相关
- 相关推荐
发表评论
- 浏览: 2298 次
- 性别:

- 来自: 广州

- 详细资料
搜索本博客
最近加入圈子
最新评论
-
配置myEclipse Ext插件
Excuse me, where can I download Ext_JSEc ...
-- by windshjw -
配置myEclipse Ext插件
1. [Help]-[Software Updates]-[Find and I ...
-- by X.D.Hua -
营销的四种模式
学习以下
-- by isky






评论排行榜