首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

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

2012-10-13 
日期对象——得到当前日期显示格式如 2011-04-03 00:19:19function showTime(){var mydate new Date()var

日期对象——得到当前日期显示格式如 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方法(毫秒)) ;

热点排行