例如时间13:2:1要显示为13:02:01,怎样处理
var miao=time.getSeconds();
if(miao<10){
miao="0"+time.getSeconds();
}
else{miao=time.getSeconds(0)}
直接用if判断一下,然后用0这个字符拼接一下,就可以做到这个效果