Ajax之 beforeSend和complete longind制作

时间:2023-03-08 23:30:05
Ajax之 beforeSend和complete longind制作

p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 15.0px Consolas; min-height: 18.0px }
p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 15.0px Consolas; color: #f9f9f5 }
p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 15.0px Consolas; color: #888471 }
p.p4 { margin: 0.0px 0.0px 0.0px 0.0px; font: 15.0px Consolas }
p.p5 { margin: 0.0px 0.0px 0.0px 0.0px; font: 15.0px Consolas; color: #ebe087 }
span.s1 { color: #75e0f2 }
span.s2 { color: #f9f9f5 }
span.s3 { color: #ebe087 }
span.s4 { color: #ffa827 }
span.s5 { color: #000000 }
span.Apple-tab-span { white-space: pre }

 

 

$.ajax({

    beforeSend: function(){

     // Handle the beforeSend event

    },

    complete: function(){

     // Handle the complete event

    }

    // ......

});

 

$.ajax({

    type: "post",

 

    url: "xxxxx",

    beforeSend: function () {

        $("loading").show();

    },

    success: function (data) {

    //........

    },

    complete: function () {

        $("loading").hide();

},

Ajax之 beforeSend和complete longind制作

});