码迷,mamicode.com
首页 > 编程语言 > 详细

记录把方法添加到 JavaScript 对象不明白的地方

时间:2014-10-13 16:05:39      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   java   sp   div   on   

<!DOCTYPE html>
<html>
<body>
<script>
function person(firstname,lastname,age,eyecolor)
{
this.firstname=firstname;
this.lastname=lastname;
this.age=age;
this.eyecolor=eyecolor;
 
this.changeName=changeName;
function changeName(name)
{
this.lastname=name;
}
}
myMother=new person("Sally","Rally",48,"green");
myMother.changeName("Doe");
document.write(myMother.lastname);
</script>

</body>
</html>
    

来源:http://www.w3cschool.cc/js/js-objects.html

有一句不明白呀~为什么要this.changeName=changeName呢?是函数指针的意思么?

记录把方法添加到 JavaScript 对象不明白的地方

标签:style   blog   http   color   io   java   sp   div   on   

原文地址:http://www.cnblogs.com/jin-wen-xin/p/4022163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!