this指向问题

一、函数调用方式决定了this指向

1、普通函数调用,this指向window(非严格模式下,严格模式下,指向undefined)

    function fn() {
        console.log(this);  // window
    }

    fn();  // window.fn(),此处默认省略window

2、构造函数调用,此时this指向实例对象

    function Person(age, name) {
         this.age = age;
         this.name = name
         console.log(this)  // 此处 this 分别指向 Person 的实例对象 p1 p2
     }
    var p1 = new Person(18, '张三')
    var p2 = new Person(18, '李四')

3、对象中,此时this指向该方法所属的对象

 var obj = {
       fn: function () {
         console.log(this); // obj
       }
     }
 obj.fn();

4、通过事件绑定的方法,此时this指向绑定事件的对象

<body>
    <button id="btn">按钮</button>
<script>
    var oBtn = document.getElementById("btn");
    oBtn.onclick = function() {
        console.log(this); // btn
    }
</script>
</body>

5、定时器函数,此时this指向window

 setInterval(function () {
       console.log(this); // window
 }, 1000);

上一篇:《视觉SLAM十四讲》笔记(1-3)


下一篇:C++面向对象课程设计报告_快递系统