为什么秒针小于10的情况下不会添0
var attime;
function clock(){
var time=new Date();
var h = time.getHours();
var m = time.getMinutes();
var s = time.getSeconds();
checkTime(m);
checkTime(s);
attime= h+':'+m+':'+s ;
document.getElementById("clock").value = attime;
function checkTime(k){
if(k<10){
k='0'+k;
}
return k;
}
}
var timer = setInterval(clock,1000)
为什么秒针小于10的情况下不会添0