1

我正在开发一个基于 ajax 的网站,我想在其中显示 ajax 加载时间的图像(如进度条)。我的意思是,想在用户单击 div 后显示图像,并且需要在从 ajax 页面获取结果后显示它。我怎样才能做到这一点...?提前致谢。

这是代码示例

$.ajax({
            dataType:'json',
            type:"POST",
            url:"ajaxJobs.php",
            data:{

                p:$(this).attr('id')
            },
            success:function(result){

            }
        });
4

2 回答 2

3

在启动 AJAX 时显示微调器(顺便说一下,它称为微调器),并在success函数中隐藏它。

于 2012-09-16T07:43:04.600 回答
0

使用这样的东西

<img id="loading" src="path/to/loading/img" />
<script>
$.ajax({
        dataType:'json',
        type:"POST",
        url:"ajaxJobs.php",
        data:{

            p:$(this).attr('id')
        },
        success:function(result){
            $('#loading).hide();
        }
    });
</script>
于 2012-09-16T07:53:16.427 回答