会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
kuailewangzi1212
博客园
首页
新随笔
联系
管理
订阅
原型链模型
2
*/
3
var
p
=
new
Employee(
'
mxh
'
,
20
);
Code
1
function
Person(name)
2
{
3
this
.name
=
name
4
}
5
Person.prototype.sayHello
=
function
()
6
{
7
alert(
this
.name);
8
}
9
function
Employee(name,age)
10
{
11
Person.call(
this
,name);
12
this
.age
=
age;
13
}
14
Employee.prototype
=
new
Person();
//
将Employee的prototype设置为Person的prototype,并用Employee.prototype作为this调用Person函数
posted @
2009-04-02 14:36
kuailewangzi1212
阅读(
156
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告