gpt4 book ai didi

jQuery 回调未被调用

转载 作者:行者123 更新时间:2023-12-01 01:20:54 26 4
gpt4 key购买 nike

我正在使用 jQuery 的 .post AJAX 方法:

// completion toggling
$('.item input').click(function() {
$.post('complete.php', {item: this.id}, function() {
$(this).parent().fadeOut('slow');
});
});

我在这里做错了什么? AJAX 在记录更新时工作,但回调事件永远不会发生。 Firebug 中也没有错误。

最佳答案

我想知道此时它是否不是一个不同的“this”。尝试使用捕获:

$('.item input').click(function() {
var tmp = this;
$.post('complete.php', {item: this.id}, function() {
$(tmp).parent().fadeOut('slow');
});
});

关于jQuery 回调未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/693539/

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