12345678910111213141516171819202122232425262728293031323334353637 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <script>
- var person = {
- name: "小朋",
- age: 18,
- sex: "男",
- talk:function(){
- // console.log(person.name);
- // 在对象当中实用this 指向当前对象
- console.log(this.name);
- }
- }
- person.school = "黑大";
- console.log(person);
- // person.talk();
- // var person2 = {
- // name: "小红",
- // age: 18,
- // sex: "女"
- // }
- // console.log(person.name);
- // var arr = [person, person2];
- // person.age = 20;
- // console.log(person);
- </script>
- </body>
- </html>
|