JavaScript 获取全中文日期+时间(2007年8月5日修正)

直接用getDate()和getTime()好似只能获取到数字组,所以…… 

2007年8月3日版本,日期最终获取错误,疏忽啊,错误理解了getDay和getMonth方法。
//获取当前日期时间字符串[格式xxxx年xx月xx日 xx:xx:xx.xxx]
 function GetNowDateTime()
 {
    var nowTime = new Date();
    var NowDateTime = nowTime.getFullYear() + "年" +
                        nowTime.getMonth() + "月" +
                        nowTime.getDay() + "日"  +
                        " " +
                        nowTime.getHours() + ":" +
                        nowTime.getMinutes() + ":" +
                        nowTime.getSeconds() + "." +
                        nowTime.getMilliseconds();
   return NowDateTime;
 }


2007年8月5日修正,保证没有什么问题,如果你想获取到的只是xxxx年xx月xx日 xx:xx:xx,直接调用.toLocaleString()方法就好,不用这么麻烦!(*^__^*)
 //获取当前日期时间字符串[格式xxxx年xx月xx日 xx:xx:xx.xxx]
 function GetNowDateTime()
 {
    var nowTime = new Date();
    var NowDateTime = nowTime.getFullYear() + "年" +
                        (nowTime.getMonth() + 1 )+ "月" +
                        nowTime.getDate() + "日"  +
                        " " +
                        nowTime.getHours() + ":" +
                        nowTime.getMinutes() + ":" +
                        nowTime.getSeconds() + "." +
                        nowTime.getMilliseconds();
//   var NowDateTime = nowTime.toLocaleString();
   return NowDateTime;
 }

你可能感兴趣的:(JavaScript)