?if( parseInt(curSeconds/10) != parseInt(nextSeconds/10) ){
? ? ? ? ? ? addBalls( MARGIN_LEFT + 78*(RADIUS+1) , MARGIN_TOP , parseInt(curSeconds/10) );
? ? ? ? }
? ? ? ? if( parseInt(curSeconds%10) != parseInt(nextSeconds%10) ){
? ? ? ? ? ? addBalls( MARGIN_LEFT + 93*(RADIUS+1) , MARGIN_TOP , parseInt(nextSeconds%10) );
為什么第一個parseInt里是curSeconds 下面的parseInt是nextSeconds? 求解
? ? ? ? }
2014-10-01
ok的 ?~