文章标题

来源:互联网 发布:网易minecraft 知乎 编辑:程序博客网 时间:2024/06/05 15:05

JavaScript的属性–prototype
定义和用法:
prototype 属性使您有能力向对象添加属性和方法
语法:
object.prototype.name=value
示例代码:

<script type="text/javascript">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);</script>

输出结果
20000