JavaScript prototype 属性

定义和用法

prototype 属性允许您向对象添加属性和方法

注意: Prototype 是全局属性,适用于所有的Javascript对象。

 

语法
object.prototype.name=value

  

实例

适用 prototype 属性给对象添加属性:
<script>

function employee(name,jobtitle,born)
{
this.name=name;
this.jobtitle=jobtitle;
this.born=born;
}

var fred=new employee("Fred Flintstone","Caveman",1970);
employee.prototype.salary=null;
fred.salary=20000;

document.write(fred.salary);

</script>
以上实例输出结果:
20000

  

posted @ 2016-01-25 20:52  wikiki  阅读(137)  评论(0编辑  收藏  举报