javascript prototype 属性
Posted clear93
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript prototype 属性相关的知识,希望对你有一定的参考价值。
prototype 属性向对象添加属性和方法。
语法
object.prototype.name=value
实例
使用 prototype 属性来向对象添加属性:
function employee(name,job,born) { this.name=name; this.job=job; this.born=born; } var bill=new employee("Bill Gates","Engineer",1985); employee.prototype.salary=null; bill.salary=20000; document.write(bill.salary);
输出:
20000
prototype是函数的一个属性,并且是函数的原型对象。引用它的必然是函数,这个应该记住。
以上是关于javascript prototype 属性的主要内容,如果未能解决你的问题,请参考以下文章