gpt4 book ai didi

JavaScript 不在数组中定义方法

转载 作者:行者123 更新时间:2023-11-29 18:22:46 26 4
gpt4 key购买 nike

我有以下情况:

var a = {
b: function() {
alert('hi');
},
c: [{m: this.b}]
};

alert(typeof a.c[0].m);

输出为“未定义”。这是什么原因?

最佳答案

因为您在对象中使用了 this 关键字。在这种情况下,this.b 指的是未定义的东西,它应该是 window 的属性。

阅读this article ,这对理解作用域非常有用。

在这种情况下,您应该这样声明您的变量:

b = 't'; //note there is not keywork var, it is a window global variable
var a = {
c: [{
b: 'a',
m: this.b //is 't'
}],
b: function() {
alert('hi');
}
};

alert(a.c[0].m); //will display 't'

关于JavaScript 不在数组中定义方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16794324/

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