有没有提高项目倒计时的网站?

来源:百度知道 编辑:UC知道 时间:2024/06/08 13:04:02
比如说,3月1日我要做什么事,然后可以在这个网站上设置倒计时。或者是生成程序代号也可以,然后贴到自己的博客上。 最好可以精确到秒钟。

修改相应的文字、日期
<Script Language="JavaScript">
var enabled = 0; today = new Date();
var day; var date;
var timedate= new Date("june 7,2009");
var times="距2009年高考";
var now = new Date();
var date = timedate.getTime() - now.getTime();
var time = Math.floor(date / (1000 * 60 * 60 * 24));
if (time >= 0) ;
document.write("【无忧数学】温馨提示:"+" <font color=red>"+times+"</font> 还有:<font style='color:#ff0000;line-height:32px;font-family:Verdana;font-size:24px;'><b>"+time +"</b></font>天");
</Script>