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