案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<script>
6
person=new Object();
7
person.firstname="Bill";
8
person.lastname="Gates";
9
person.age=56;
10
person.eyecolor="blue";
11
document.write(person.firstname + " is " + person.age + " years old.");
12
</script>
13
14
</body>
15
</html>
16