【发布时间】:2013-11-11 13:21:07
【问题描述】:
我有两页。我将 ajax 调用从第一页发送到第二页以在其中执行 php 代码。
执行需要很长时间(1-2 分钟)。如何创建进度条并在第一页显示进度百分比。
我可以计算进度百分比,但如何在第一页实时显示。
首页.php
$.ajax({ url: 'secondpage.php',
data: {'q': data},
type: 'post',
success: function(output) {
//some code
}
secondpage.php
<?php
// I have some codes here that can calculate progress percent
// but how to show real time progress percent in firstpage.php
echo $result; //final result(for ajax callback)
?>
【问题讨论】:
标签: php ajax progress-bar real-time