转载:http://www.w3school.com.cn/jsref/jsref_prototype_array.asp
prototype 属性使您有能力向对象添加属性和方法。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 |
<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
JS中创建类,即function 此列中employee为创建的类。
var bill=new employee("Bill Gates","Engineer",1985); //实例化employee类
JavaScript prototype 属性,布布扣,bubuko.com
原文:http://www.cnblogs.com/senyier/p/3621205.html