码迷,mamicode.com
首页 > 其他好文 > 详细

244 函数内部的this指向:6种

时间:2020-01-22 20:16:07      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:init   query   调用函数   tar   定时器   不同   body   image   事件   

这些 this 的指向,是当我们调用函数的时候确定的。调用方式的不同决定了this 的指向不同。
一般指向我们的调用者。

技术图片


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>

<body>
    <button>点击</button>
    <script>
        // 函数的不同调用方式决定了this 的指向不同
        // 1. 普通函数 this 指向window
        function fn() {
            // 普通函数的this指向:[object Window]
            console.log('普通函数的this指向:' + this);
        }
        window.fn();


        // 2. 对象的方法 this指向的是对象 o
        var o = {
            sayHi: function() {
                // 对象方法的this指向:[object Object]
                console.log('对象方法的this指向:' + this);
            }
        }
        o.sayHi();


        // 3. 构造函数 this 指向 ldh 这个实例对象 原型对象里面的this 指向的也是 ldh这个实例对象
        function Star() {
            this.dancing = function() {
                // 构造函数的this指向:[object Object]
                console.log('构造函数的this指向:' + this);
            }
        };
        Star.prototype.sing = function() {
            // 构造函数的原型对象的this指向:[object Object]
            console.log('构造函数的原型对象的this指向:' + this);
        }
        var ldh = new Star();
        ldh.dancing();
        ldh.sing();


        // 4. 绑定事件函数 this 指向的是函数的调用者 btn这个按钮对象
        var btn = document.querySelector('button');
        btn.onclick = function() {
            // 绑定时间函数的this指向:[object HTMLButtonElement]
            console.log('绑定时间函数的this指向:' + this);
        };


        // 5. 定时器函数 this 指向的也是window
        window.setTimeout(function() {
            // 定时器的this指向:[object Window]
            console.log('定时器的this指向:' + this);
        }, 1000);


        // 6. 立即执行函数 this还是指向window
        (function() {
            // 立即执行函数的this指向:[object Window]
            console.log('立即执行函数的this指向:' + this);
        })();
    </script>
</body>

</html>

244 函数内部的this指向:6种

标签:init   query   调用函数   tar   定时器   不同   body   image   事件   

原文地址:https://www.cnblogs.com/jianjie/p/12229344.html

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