我有进度条,我只在页面没有加载时才工作,如果页面加载例如不向数据库进度条插入数据,只有在完成插入数据时才工作,用我的代码拧什么?
<script>
$(document).ready(function() {
//
setInterval(function()
{
$.get("currentProgress.php", {
},
function(data)
{
$('#progress_bar').width(data +"%");
$('#progress_completed').html(parseInt(data) +"%");
}
)},1000);
});
</script>
在php循环中:$_SESSION['value'] +=1;
并在currentProgress.php中:<?php session_start(); echo $_SESSION['value']; ?>