我试过这个答案。
这是我的功能,当我单击图像时调用它。
function CheckOut(urlCheckoutNew,urlWebService) {
var inputData = JSON.stringify(getQuotation(urlCheckoutNew));
$('#imgloading').show();
$.ajax({
type: 'POST',
url: urlWebService,
contentType: 'application/json',
processData: false,
dataType: 'json',
data: inputData,
success: function (dataQuote) {
//alert(1);
$('#imgloading').hide();
}
});
}
这是我的html:
<div id="imgloading" style="display:none;">
<img src="/Content/Images/ImageModal/loading.gif" alt="Confirming"/>
</div>
该功能处于success
警报正在工作的状态,但图像未加载。当弹出警报对话框时,我看到加载图像正在后台加载。但是当我评论警报时,图像没有显示。
谁能告诉我我该怎么做?