在检查它将触发对服务器的长时间调用时,我有一个复选框。我想在用户等待呼叫时显示旋转的 .gif 图像,但图像未显示。下面是我的代码片段:
$('#chk').click(function () {
$('span.progress-indicator').show(); //the gif image
$.ajaxSetup({ asynch: false});
LongServerCallMethod();
$('span.progress-indicator').hide(); //the gif image
});