我是靠谱客的博主 风中水蜜桃,最近开发中收集的这篇文章主要介绍原型对象的this指向,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA_Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Title</title>
    <link rel="stylesheet" href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet">
    <script>
        window.onload = function () {
            function Star(name,age) {
                this.name = name;
                this.age = age;
            }
            var that;
            Star.prototype.sing = function () {
                console.log('唱歌!');
                that = this;
            };
            var nlbf = new Star('nlbf',26);
            //1 在构造函数中,里面的this指向的是对象实例 nlbf
            nlbf.sing();
            console.log(that === nlbf);//true
            //2 原型对象函数里面的 this 指的是 实例对象 nlbf
        }
    </script>
</head>
<body>

</body>
</html>

最后

以上就是风中水蜜桃为你收集整理的原型对象的this指向的全部内容,希望文章能够帮你解决原型对象的this指向所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(49)

评论列表共有 0 条评论

立即
投稿
返回
顶部