毫秒转分钟加秒钟1.封装 function duration(x){ if(x/1000/60<=10){ var min=('0'+Math.floor(x/1000/60)) //分钟 }else{ min=Math.floor(x/1000/60) } if(x/1000%60<=10){ var sec='0'+Math.round(x/1000%60) //秒钟 }else{ sec=Math.round(x/1000%60) } return min+':'+sec;} 2.