jQuery/JavaScript “this” pointer confusion

前端 未结 7 649
余生分开走
余生分开走 2020-11-29 02:44

The behavior of \"this\" when function bar is called is baffling me. See the code below. Is there any way to arrange for \"this\" to be a plain old js object in

相关标签:
7条回答
  • 2020-11-29 02:50

    Welcome to the world of javascript! :D

    You have wandered into the realm of javascript scope and closure.

    For the short answer:

    this.bar()
    

    is executed under the scope of foo, (as this refers to foo)

    var barf = this.bar;
    barf();
    

    is executed under the global scope.

    this.bar basically means:

    execute the function pointed by this.bar, under the scope of this (foo). When you copied this.bar to barf, and run barf. Javascript understood as, run the function pointed by barf, and since there is no this, it just runs in global scope.

    To correct this, you can change

    barf();
    

    to something like this:

    barf.apply(this);
    

    This tells Javascript to bind the scope of this to barf before executing it.

    For jquery events, you will need to use an anonymous function, or extend the bind function in prototype to support scoping.

    For more info:

    • Good explanation on scoping
    • Extending jQuery bind to supportscoping
    0 讨论(0)
  • 2020-11-29 02:51
    this.bar();  // when called here, "this" is the foo instance
    

    this comment is wrong when foo is used as a normal function, not as a constructor. here:

    foo();//this stands for window
    
    0 讨论(0)
  • 2020-11-29 03:05

    You may use Function.apply on the function to set what this should refer to:

    $("#thing").after($("<div>click me</div>").click(function() {
        barf.apply(document); // now this refers to the document
    });
    
    0 讨论(0)
  • 2020-11-29 03:08

    Get the book: JavaScript: the Good Parts.

    Also, read as much as you can by Douglas Crockford http://www.crockford.com/javascript/

    0 讨论(0)
  • 2020-11-29 03:08

    This is because this is always the instance that the function is attached to. In the case of an EventHandler it is the class that triggered the event.

    You can help your self with an anonymous function like this:

    function foo() {
      var obj = this;
      $("#thing").after($("<div>click me</div>").click(function(){obj.bar();}));
    }
    
    foo.prototype.bar = function() {
      alert(this);
    }
    
    0 讨论(0)
  • 2020-11-29 03:10

    There's a good explanation on this keyword in JavaScript available at QuirksMode.

    0 讨论(0)
提交回复
热议问题