0

我有进度条,它只有在页面没有加载时才起作用,如果页面加载例如将数据插入数据库进度条没有,只有在完成插入数据时才起作用,我的代码有什么问题?

<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']; ?>

4

0 回答 0