注意:是读本地时间啊



小儿,来个js倒计时_js



CODE如下

<html>
<head>
<title>倒计时</title>
<body>
<script>
var now  = new Date("02/09/2015 " + 10 + ":" + 30 + ":" + 30);//开始时间
function GetServerTime()
{
    var urodz     = new Date("02/10/2015 10:30:30");//截止时间
    now.setTime(now.getTime()+250);
    days    = (urodz - now) / 1000 / 60 / 60 / 24;
    daysRound   = Math.floor(days);
    hours    = (urodz - now) / 1000 / 60 / 60 - (24 * daysRound);
    hoursRound   = Math.floor(hours);
    minutes   = (urodz - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
    minutesRound  = Math.floor(minutes);
    seconds   = (urodz - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
    secondsRound  = Math.round(seconds);
    document.getElementById("date").innerHTML   = daysRound;
    document.getElementById("time").innerHTML   = hoursRound + ":" + minutesRound + ":" + secondsRound;
}
setInterval("GetServerTime()",250);
</script>
<span id="date"></span> <span class="white14b">天</span> <span id="time"></span>
</body>
</html>




小儿,来个js倒计时_js_02小儿,来个js倒计时_js_03小儿,来个js倒计时_js_04小儿,来个js倒计时_js_05小儿,来个js倒计时_js_06小儿,来个js倒计时_倒计时_07小儿,来个js倒计时_倒计时_08小儿,来个js倒计时_js_09