码迷,mamicode.com
首页 > Web开发 > 详细

JS高级----------------->原型简单的写法(注意手动修改构造器的指向)

时间:2018-08-24 10:57:11      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:return   style   注意   prot   color   简单的   type   turn   charset   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<script>
    function Student(name, age, sex) {
        this.name = name;
        this.age = age;
        this.sex = sex;
    }
    //简单的原型写法
    Student.prototype = {
        //手动修改构造器的指向
        constructor: Student,
        height: 188,
        width: 55,
        study: function () {
            return this.name + "在学习";
        },
        eat: function () {
            return this.name + "在吃饭";
        }
    };

    var stu = new Student("Andy", 18, "");
    console.log(stu.study());
    console.log(stu.eat());
    console.dir(stu);
    console.dir(Student);

    //注意需要手动修改构造器的指向
</script>
</body>
</html>

 

JS高级----------------->原型简单的写法(注意手动修改构造器的指向)

标签:return   style   注意   prot   color   简单的   type   turn   charset   

原文地址:https://www.cnblogs.com/cuilichao/p/9527581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!