[求助] 需要一个 时间代码,还请大家来看一下!
代码是 计算 当天到指定时期内的时间,用月、天、星期、小时、分、秒、 毫秒 这样动态显示出来。就是在网页里 一个 倒计时时间,比如:离11月25号还有 N天 N星期 N小时 N分 N秒 N毫秒, 时间是动态显示的!
有没有高手可以教教 我怎么做啊??
在此谢过!!
<script language=JavaScript>
d1 = new Date;
d2 = new Date(2006,11,25,0,0,0);
a = (d2.getTime()-d1.getTime());
b = a/1000;
c = b/60;
d = c/60;
e = d/24;
f = e/7;
alert(a + "ms"); //毫秒
alert(b + "s"); //秒
alert(c + "m"); //分
alert(d + "h"); //时
alert(Math.ceil(e) + "day"); //天
alert(Math.ceil(f) + "week"); //周
//Math.ceil()函数,向上取整,即零头算一天
</script>