gpt4 book ai didi

javascript - 为什么在javascript中是= this?

转载 作者:行者123 更新时间:2023-11-30 12:22:38 25 4
gpt4 key购买 nike

<分区>

我有这样一段js代码

Customer.prototype.parseAddress = function(data){
this.address = data.address;
}
Customer.prototype.loadAddress = function(){
...
}

我需要实现 loadAddress 函数。

谁能解释一下为什么这段代码是正确的

var that = this;
$.get('data.xml', function(data){
that.parseAddress(data);
});

下面是不正确的

$.get('data.xml', function(data){
this.parseAddress(data);
});

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