Javascript系列教程:面向对象讲解(三)
- 发表于
- jQuery
对象的访问修饰条符
<script type="text/javascript">
function Person(){
var Name="Wang Hongjian";
var Age=22;//私有成员
this.Age=23;//公有成员var Job="工程师";//局部成员
this.GetJob=function(){
return Job;
}
alert(Age);
alert(this.Age);
}
var P=new Person();
alert(P.Age);//访问公共成员
alert(P.GetJob());
</script>
当然其中也可通过
this.GetAge=function(){
return this.Age;
}
来访问其公共成员.
原文连接:Javascript系列教程:面向对象讲解(三)
所有媒体,可在保留署名、
原文连接
的情况下转载,若非则不得使用我方内容。