单击链接时,我正在使用 jquery ajax 将单独的页面加载到模式窗口中。在加载模式内容时,我会显示一个加载图像。加载图像位于页面上的一个 div 中,并针对页面上的任何 ajax 加载显示。这一切正常,但我似乎无法在 ajax 调用成功后隐藏图像。
这是我正在使用的 jquery:
$('#loadingImage').ajaxStart(function(){
$(this).show();
});
$('#loadingImage').ajaxSuccess(function(){ //also tried ajaxStop
$(this).hide();
});
function loadMap(){
$('#whereweare-map').click(function(){
$('#lightBox').removeClass().addClass('reveal-modal expand');
$.ajax({
url: '/Map#mapLoad',
success: function(data){
$('#lightBox').reveal();
$('#lightBoxContent').html(data);
}
});
return false;
});
}
loadMap();
HTML:
<div id="imageLoading"></div>
<a href="#" id="whereweare-map">Where We Are</a>
<div class="reveal-modal" id="lightBox">
<div id="lightBoxContent"><!-- Load Content Here --></div>
<a class="close-reveal-modal">×</a>
</div>
和CSS:
#loadingImage {
display:none;
height:84px;
width:84px;
position:fixed;
top:50%;
left:50%;
z-index: 1;
background: url('preloader.gif') no-repeat center center;
background-color: #000;
background-color: rgba(0, 0, 0, 0.7);
-moz-border-radius:45px;
-webkit-border-radius:45px;
border-radius:45px;
}
谢谢您的帮助。