gpt4 book ai didi

AJAX 在 jQuery 1.8.3 中工作,但在 1.9.1 中不工作

转载 作者:行者123 更新时间:2023-12-01 06:27:48 24 4
gpt4 key购买 nike

如标题所述,我有这个 AJAX 函数,它在 jQuery 1.8.3 中完美运行

$.ajax({
type: "GET",
url: "bee.php",
success: function(msg) {
$("#bee-section").ajaxComplete(function() {
$(this).html(msg);
});
}
});

但在 jQuery 1.9.1 中不起作用并且根本不显示任何内容。有什么帮助吗?谢谢。 :)

最佳答案

来自the documentation :

As of jQuery 1.8, however, the .ajaxComplete() method should only be attached to document.

你应该使用

$(document).ajaxComplete

而不是

$("#bee-section").ajaxComplete

但这里不需要 ajaxComplete,因为您已经处于 success 回调中。

简单地使用

$.ajax({
type: "GET",
url: "bee.php",
success: function(msg) {
$("#bee-section").html(msg);
}
});

或者更简单:

$("#bee-section").load("bee.php");

关于AJAX 在 jQuery 1.8.3 中工作,但在 1.9.1 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15227446/

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