zoukankan      html  css  js  c++  java
  • 12-自定义对象(单个对象)

     1 <!DOCTYPE html>
     2 <html>
     3 <head lang="en">
     4     <meta charset="UTF-8">
     5     <title></title>
     6 </head>
     7 <body>
     8 <script>
     9 
    10     //需求:单个自定义对象。
    11     //缺点:传单单个对象的时候还好,创建多个多线的时候变得非常繁琐
    12     //创建多个对象,for循环不能修改名字的值。函数也可以创建多个对象。
    13     var student = new Object();
    14 
    15 //    console.log(student);
    16     student.name = "张三";
    17 //    student.age = 18;
    18 //    student.address = "辽宁省铁岭市莲花乡池水沟子";
    19     student.sayHi = function () {
    20         console.log(this.name+"说:大家好!");
    21     }
    22 
    23     console.log(student.name);
    24     student.sayHi();
    25 
    26 
    27 </script>
    28 </body>
    29 </html>
  • 相关阅读:
    python 安装包总结
    python wmi使用
    Jquery
    查看linux操作系统位数
    三元
    git clone 指定分支的内容
    慕课网
    http://amazeui.org 后天框架
    tp between
    git pull
  • 原文地址:https://www.cnblogs.com/BingBing-Deng/p/10267054.html
Copyright © 2011-2022 走看看