﻿// 时间倒数
var _seed = null;
function GetRTime()
{
    var nD =Math.floor(total_Milliseconds/(1000 * 60 * 60 * 24));
    var nH=Math.floor(total_Milliseconds/(1000*60*60)) % 24;;
    var nM=Math.floor(total_Milliseconds/(1000*60)) % 60;
    var nS=Math.floor(total_Milliseconds/1000) % 60;
    

    
    //alert(nH);
    if(nD>= 0)
    {
        //$("counter").update("截止倒计时："+nD+"天"+nH+"小时"+nM+"分"+nS+"秒");
        $("counter").update("<div class=\"z\">距离抢购结束还有</div><div class=\"y\"><a href=\"#\">"+ nH +"</a><div>:</div><a href=\"#\">"+nM+"</a><div>:</div><a href=\"#\">"+nS+"</a></div>");
        total_Milliseconds-=1000;
    }
    else
    {
        if(!_seed)
        {
            window.clearTimeout(_seed);
        }
         $("counter").update("<div class=\"z\">不在抢购时间范围</div><div class=\"y\"><a href=\"#\">00</a><div>:</div><a href=\"#\">00</a><div>:</div><a href=\"#\">00</a></div>");
    }
    _seed = window.setTimeout("GetRTime();",1000);
}

