gpt4 book ai didi

javascript - 从 .done 到 $this @jquery ajax 的返回值

转载 作者:行者123 更新时间:2023-11-30 07:00:51 25 4
gpt4 key购买 nike

control_td.each(function(){
$.ajax({
url: 'control.php?udid='+$(this).attr('udid'),
cache: false,
async: true
}).done(function(data) {
$(this).html(data);
});
});

但是 $this.done 子函数中不起作用。我在这里做错了什么?

最佳答案

因为 this 没有引用回调中的元素项。

尝试关闭一个新值。

control_td.each(function(){
var $self = $(this); // magic here!
$.ajax({
url: 'control.php?udid='+$(this).attr('udid'),
cache: false,
async: true
}).done(function(data) {
$self.html(data);
});
});

关于javascript - 从 .done 到 $this @jquery ajax 的返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15744441/

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