返回列表 发帖
这种小东西你也发啊?
[size=5]阳光论坛[email]o.i.c.q@126.com[/email] [/size][swf]http://sun.hrbeu.edu.cn/flash/5.swf[/swf]

TOP

怎么了?
我觉得很好啊~有学习价值就好了
[img]http://www.game365.com/club/stop/images/logo.jpg[/img] 永远的星际……

TOP

你看的懂吗?

TOP

程序计算日期有误的

e="0"+24-now.getHours();    //这里应该拿23减
f="0"+59-now.getMinutes();  // 这里对了
g="0"+60-now.getSeconds(); // 这里对了

if(n=2004,2008){c=29-now.getDate()}
//这里如果你就按照2008年全年都开奥运的话,这里是没用的;因为我看你的发帖日期是在2004年11月的;多余的。

a=2008-now.getYear()-1;                  // 这里你是不是按照2008年这个整数来算奥运呢? 至2008年年数差 这里是不是应该再减1
b=12-now.getMonth()-1;      

部分修改成这样
e=23-now.getHours();
f=59-now.getMinutes();
g=60-now.getSeconds();
// if(e>10){e=23-now.getHours()}
// if(f>10){f=59-now.getMinutes()}
// if(g>10){g=60-now.getSeconds()}

如果拿这样的程序工作,没过几天老板就生气了。

[ Last edited by NsGFr on 2005-6-8 at 13:35 ]

TOP

返回列表