日期对象——得到当前日期显示格式如 2011-04-03 00:19:19

function showTime(){
    var mydate = new Date();
var md = (mydate.getYear() + 1900) + "-";
    if(mydate.getMonth()<9){
           md +="0";
    }
md += (mydate.getMonth() + 1) + "-";
if(mydate.getDate()<9){
   md +="0";
}
md += mydate.getDate() + " ";
if(mydate.getHours()<9){
   md +="0";
}
md += mydate.getHours() + ":";
if(mydate.getMinutes()<9){
   md +="0";
}
md += mydate.getMinutes() + ":";
if(mydate.getSeconds()<9){
   md +="0";
}
md += mydate.getSeconds();
document.getElementById("myTime").value = md;
                setTimeout("showTime()",1000);
}

mydate对象获取到的月跟日、时分秒 当是小于10的时候都是单位数显示的
   加上if语句中的  字符” 0“  便可达到  双位数显示
  如以上方法显示的是 2011-04-03 00:19:19
setTimeout("showTime()",1000);  setTimeout(”a方法名“,没个多少时间执行一次a方法(毫秒)) ;

你可能感兴趣的:(对象)