1
2
3
4 javascript对象的学习
5
6...
7 1.使用JS创建person对象,里面有id,name,age,sex属性 ,有eat,run方法 (2种方法创建)
8
9 document.write("2>"+"第一种方法"+"2>");
10 var person=new..."+"第二种方法"+"2>");
30 var person=new Person("10011","小李",23,"男");
31 function Person..."+"第三种:创建对象使用最多的方法"+"2>");
52 var person={id:"10012",name:"小赵",age:24,sex:"男",eat:function