jQuery中的Ajax全局事件

$("body").ajaxStart(function () {
               var $height = $(window).height()/2; //获取浏览器高度的一半
               var $width = $(window).width()/2;             //获取浏览器高度宽度的一半

             
               $("body").append("<img src='loding.gif' class='kk' style=' position:fixed; top:" + $height + "px; left:" + $width + "px; ' />");
           })
           $("body").ajaxStop(function () {
               $(".kk").hide();
           })

 

posted @ 2020-03-01 16:51  曾小慧  阅读(392)  评论(0编辑  收藏  举报