要解决Ajax没有显示任何内容的问题,您需要检查以下几个方面:
$.ajax({
url: "your-url",
success: function(response) {
console.log(response); // 检查响应是否正确
},
error: function(xhr, status, error) {
console.log(error); // 检查错误信息
}
});
$.ajax({
url: "your-url",
success: function(response) {
console.log(response); // 检查响应是否正确
// 在页面上显示响应内容
$("#content").html(response);
},
error: function(xhr, status, error) {
console.log(error); // 检查错误信息
}
});