码迷,mamicode.com
首页 > Web开发 > 详细

js prototype 添加属性对象

时间:2017-05-20 01:16:07      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:ext   java   对象   job   write   script   prot   type   new   

在本例中,我们将展示如何使用 prototype 属性来向对象添加属性:

<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>

js prototype 添加属性对象

标签:ext   java   对象   job   write   script   prot   type   new   

原文地址:http://www.cnblogs.com/ouyangping/p/6880668.html

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