> 백엔드 개발 > PHP 튜토리얼 > php+js倒计时代码 秒不动解决思路

php+js倒计时代码 秒不动解决思路

WBOY
풀어 주다: 2016-06-13 13:27:41
원래의
742명이 탐색했습니다.

php+js倒计时代码 秒不动
从网上找的这段代码 运行之后 秒 是不动的 为什么?

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<script type="text/javascript">
function getTheTime(D,i){
     var theDate=new Date(D);
     var date = new Date();
     var diffTime = theDate - date;
     //if(diffTime<=0){
      //document.getElementById("diffDay2"+i) .innerHTML="时间已过.";
      //return;
     //}
     var para = 1000 * 60 * 60 * 24;
     //var diffday = diffTime / para;
     var diffHour = (diffTime % para) / 3600000;
     var diffMinute = (diffTime % 3600000 ) / 60000;
     var diffSecond = (diffTime % 60000) / 1000;
     //document.getElementById("diffDay1"+i).innerHTML = "<b>"+Math.floor(diffday)+ "" + "天 ";
     document.getElementById("diffDay2"+i).innerHTML = Math.floor(diffHour) + "小时" + Math.floor(diffMinute) + "分" + Math.floor(diffSecond) + "秒";
     setTimeout("getTheTime("+D+","+i+")",1000);     
     //document.getElementById("test_date").innerHTML = theDate;
     //document.getElementById("test_date_1").innerHTML = date;
}
</script> 
<?php include_once '../lib/functions.php';
$db = new Connection();
$connection = $db->connect();

$query="SELECT * FROM PICKUPTIME ORDER BY deadline ASC";
$sql=queryMysql($query);
?>
<?php $i=0;
while($info=mysql_fetch_array($sql))
{
    $deadline_dinner=$info['deadline'];
    if($info['deadline'] == "") continue;
    //echo $info['deadline'];
    $time_hr=substr($deadline_dinner, 0, 2);
    $time_min=substr($deadline_dinner, 2, 4);
    $pickup_time_formatted=$time_hr.":".$time_min;
    //$c_date=date("Y-m-d");
    $deadline=date("Y-m-d")." "."$pickup_time_formatted";
    $current_time=date("Y-m-d H:i:s");
    if($deadline<$current_time)
        $deadline=date("Y-m-d", strtotime('+1 day'))." "."$pickup_time_formatted";
    //echo "$deadline";

?>
<div id="test_date"></div>

    <div style="float:left;" id="test_date"></div>
    <div style="float:left;" id="test_date_1"></div>
    
    <div style="float:left;" id="diffDay1<?php echo $i;?>"></div>
    <div  id="diffDay2<?php echo $i;?>"></div>
    <script type="text/javascript">
    getTheTime("<?php echo $deadline;?>",<?php echo $i;?>);
    </script> 
<?php $i++;
}
?> 


로그인 후 복사


------解决方案--------------------
JScript code
//setTimeout("getTheTime("+D+","+i+")",1000);
setInterval("getTheTime('" + D + "'," + i + ")", 1000); <div class="clear">
                 
              
              
        
            </div>
로그인 후 복사
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿