📅  最后修改于: 2022-03-11 15:01:38.090000             🧑  作者: Mango
$.ajax({
url: uri,
cache: false,
beforeSend: function(){
$('#image').show();
},
complete: function(){
$('#image').hide();
},
success: function(html){
$('.info').append(html);
}
});