gpt4 book ai didi

javascript - this != this 在 javascript 中(好吧,有时......)

转载 作者:行者123 更新时间:2023-11-29 18:31:20 25 4
gpt4 key购买 nike

示例 1

var Reptile = function () {
var reptile = this;
this.showBla = function() {
alert(reptile.bla);
}
}

var turtle = new Reptile();
turtle.bla = 'whatever';
turtle.showBla();

示例 2

var Reptile = function () {
this.showBla = function() {
alert(this.bla);
}
}

var turtle = new Reptile();
turtle.bla = 'whatever';
turtle.showBla();

示例 1 是否合法?因为有时似乎把事情搞砸了直接在构造函数中定义“this”...?!?

最佳答案

是的,它是合法的,并且在您可能需要在函数内部定义一个函数的情况下很有用,该函数可能以“this”将指向其他内容的方式调用。书上推荐把这个变量命名为var that = this;

关于javascript - this != this 在 javascript 中(好吧,有时......),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7927797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com