min=Math.floor(time/60);sec=Math.floor(time%60);if(min>=60){min=min%60;}if(sec<10){sec="0"+sec;}if(min<10){min="0"+min;}text=min+":"+sec;
加特效啊