js中的this指向

Posted jlyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中的this指向相关的知识,希望对你有一定的参考价值。

    this 通常指向调用者,即谁调用指向谁。

场景1:

        var a = 2;
        function fn() {
            console.log(this.a);
        }
        var obj = {
            a:123,
            fn:fn
        }
        fn(); // 2  this指向window
        obj.fn(); // 123 this指向obj

场景2:appy 与call 可改变this 指向(call与apply的第一个参数是this指向)

        var a = 2;
        function fn() {
            console.log(this.a);
        }
        var obj = {
            a:123,
            fn:fn
        }
        fn(); // 2  this指向window
        fn.call(obj); // 123 this指向obj
        fn.call(window); // 2  this指向window

场景3:箭头函数可以改变this指向,它的this绑定取决于外层

        var a = 2;
        var fn = () => {
            console.log(this.a);
        }
        var obj = {
            a:123,
            fn:fn
        }
        fn(); // 2  this指向window
        obj.fn(); // 2 this指向window 而不是obj

场景4:事件中this指向事件对象元素

        var ul = document.getElementById("myul")
        ul.addEventListener(‘click‘, function () {
            console.log(this) // this 指向 id 为 myul 的标签
        })

 

 

 

以上是关于js中的this指向的主要内容,如果未能解决你的问题,请参考以下文章

js中的this指向

看一遍就能掌握 js 中的 this 指向

js中的this

js中的this指向

了解Js中的this指向

js中的this的指向问题