我想问如何能将时分秒每个固定成两位显示,例如05:30:3显示为05:30:03
添加一个判断条件
function double(seconds){
if(seconds<10){
return"0"+seconds;
}
else{
return +seconds;