如标题所述,我有这个 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 中工作,并且根本没有显示任何内容。有什么帮助吗?谢谢。:)