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