首頁 > 後端開發 > php教程 > php+js倒计时代码 秒不动解决思路

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

WBOY
發布: 2016-06-13 10:27:40
原創
882 人瀏覽過

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> <?phpinclude_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
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板