案例: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
document.write(bill.toSource());
16
17
</script>
18
19
</body>
20
</html>
21