Date计时的办法

      Flash 2005-2-3 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();
}


标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}