延迟ajax中的处理时间

时间:2015-01-24 10:51:02

标签: php jquery ajax

我正在使用php在ajax,jquery中进行进度条。我需要延迟上传文件的上传过程文件。这是我的代码。

uploadProgress : function(event, position, total, percentComplete) {
        $("#progressbar").width(percentComplete + '%');     
        $("#percent").html(percentComplete + '%');
        if (percentComplete > 50) {
            $("#message").html("<font color='red'>File Upload is in progress .. </font>");
        }
        },

如何延迟进度条加载以显示已完成的百分比?或者还有其他解决方案吗?

1 个答案:

答案 0 :(得分:0)

出于测试目的,您可以在Chrome开发者工具中使用网络限制(在mobile device emulator mode中)。或者在this offtopic question中讨论过任何网络限制工具。

UPD:another topic about network throttling