案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<script type="text/javascript">
5
6
function employee(name,job,born)
7
{
8
this.name=name;
9
this.job=job;
10
this.born=born;
11
}
12
13
var bill=new employee("Bill Gates","Engineer",1985);
14
15
employee.prototype.salary=null;
16
bill.salary=20000;
17
18
document.write(bill.salary);
19
20
</script>
21
22
</body>
23
</html>
24