📜  加载时的jquery ajax - Javascript代码示例

📅  最后修改于: 2022-03-11 15:01:38.090000             🧑  作者: Mango

代码示例2
$.ajax({
    url: uri,
    cache: false,
    beforeSend: function(){
        $('#image').show();
    },
    complete: function(){
        $('#image').hide();
    },
    success: function(html){
       $('.info').append(html);
    }
});