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

JS高级----------------->原型中的方法是可以相互访问的

时间:2018-08-24 10:52:29      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:oct   使用   span   添加   cti   name   pre   const   utf-8   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<script>
    function Person(name, age, sex) {
        this.name = name;
        this.age = age;
        this.sex = sex;
    }
    //使用原型添加方法
    Person.prototype = {
        //手动修改构造器的指向
        constructor: Person,
        eat: function () {
            console.log(this.name + "在吃饭");
            this.study();
        },
        study: function () {
            console.log(this.name + "在学习");
            this.run();
        },
        run: function () {
            console.log(this.name + "在跑步");
        }
    };

    //实例化
    var per = new Person("Andy", 18, "");
    per.eat();

    //原型中的方法是可以相互访问的
</script>
</body>
</html>

 

JS高级----------------->原型中的方法是可以相互访问的

标签:oct   使用   span   添加   cti   name   pre   const   utf-8   

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

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