我正在开发一个基于 ajax 的网站,我想在其中显示 ajax 加载时间的图像(如进度条)。我的意思是,想在用户单击 div 后显示图像,并且需要在从 ajax 页面获取结果后显示它。我怎样才能做到这一点...?提前致谢。
这是代码示例
$.ajax({
dataType:'json',
type:"POST",
url:"ajaxJobs.php",
data:{
p:$(this).attr('id')
},
success:function(result){
}
});