2005/02/03 | Date计时的办法
类别(Flash) | 评论(1) | 阅读(203) | 发表于 20:51
我看见论坛里有人做钟表的时候,实现即时时间的方法是
onEnterFrame = function()
{
   var da = new Date();
   da.getHours();
   da.getMinutes();
   da.getSeconds();
}

这样每enter frame一次就new一个Date感觉不是很好,发现这样做要好的多


da = new Date();
startTime = da.getTime();
onEnterFrame = function()
{
   da.setTime( startTime + getTimer() );
   da.getHours();
   da.getMinutes();
   da.getSeconds();
}


0

评论Comments

日志分类
首页[76]
Say[10]
Flash[31]
PHP[3]
XML[2]
Cool[12]
Weapon[10]
Other[8]