发布于 2023-09-13 01:42:43 浏览 192 次
$.get(url)
.done(function(response) {
// 处理成功的响应
})
.fail(function(jqXHR, textStatus, errorThrown) {
// 处理请求失败 console.log("请求失败:" + textStatus + ", " + errorThrown);
});
$.get(url)
.done(function(response) {
// 处理成功的响应
})
.catch(function(jqXHR, textStatus, errorThrown) {
// 处理请求失败 console.log("请求失败:" + textStatus + ", " + errorThrown);
});