gpt4 book ai didi

jquery - 在ajax成功函数中使用$(this)

转载 作者:行者123 更新时间:2023-12-01 06:22:17 25 4
gpt4 key购买 nike

$(".itemInto").click(function(){
var a = $(this).siblings(".itemName").html();
$.ajax({
type: "POST",
dataType: "json",
url: "process.php",
data: {a:a},
success: function(data) {
alert (data); // 20
$(this).siblings(".itemCount").text(data); // doesn't work. Nothing happens.

}
});
});

.itemCount.itemInto 的同级。为什么我无法将 data 放入其中?控制台是免费的。

最佳答案

因为上下文已经改变。

尝试将 context: this 添加到您的 AJAX 参数中。

关于jquery - 在ajax成功函数中使用$(this),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26085061/

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