实例成员:构造函数内部通过 this 添加的成员。实例成员只能通过实例对象访问
    静态成员: 在构造函数上添加的成员。静态成员只能通过构造函数访问

    1. <!DOCTYPE html>
    2. <html lang="en">
    3. <head>
    4. <meta charset="UTF-8">
    5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
    6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    7. <title>Document</title>
    8. </head>
    9. <body>
    10. <script>
    11. /*
    12. 实例成员:构造函数内部通过 this 添加的成员。实例成员只能通过实例对象去访问。
    13. 静态成员: 在构造函数上添加的成员。静态成员只能通过构造函数去访问。
    14. */
    15. function Person(uname,age){
    16. this.uname = uname;
    17. this.age = age;
    18. }
    19. Person.prototype.eat = function(){
    20. console.log('吃饭');
    21. }
    22. // 静态成员
    23. Person.weight = '178cm';
    24. Person.speak = function(){
    25. console.log('说话');
    26. }
    27. var p1 = new Person('jon',18)
    28. </script>
    29. </body>
    30. </html>