js获取当前时间的年月日时分秒以及时间的格式化
程序员文章站
2022-06-16 21:23:35
1.获取当前时间 var myDate = new Date(); 2.获取时间中的年月日时分秒 myDate.getYear(); // 获取当前年份(2位) myDate.getFullYear(); // 获取完整的年份(4位,1970-????) myDate.getMonth(); // ......
1.获取当前时间
var mydate = new date();
2.获取时间中的年月日时分秒
mydate.getyear(); // 获取当前年份(2位) mydate.getfullyear(); // 获取完整的年份(4位,1970-????) mydate.getmonth(); // 获取当前月份(0-11,0代表1月) mydate.getdate(); // 获取当前日(1-31) mydate.getday(); // 获取当前星期x(0-6,0代表星期天) mydate.gettime(); // 获取当前时间(从1970.1.1开始的毫秒数) mydate.gethours(); // 获取当前小时数(0-23) mydate.getminutes(); // 获取当前分钟数(0-59) mydate.getseconds(); // 获取当前秒数(0-59) mydate.getmilliseconds(); // 获取当前毫秒数(0-999) mydate.tolocaledatestring(); // 获取当前日期 var mytime=mydate.tolocaletimestring(); // 获取当前时间 mydate.tolocalestring( ); // 获取日期与时间
3.时间的格式化
// 对date的扩展,将 date 转化为指定格式的string // 月(m)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(s)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new date()).format("yyyy-mm-dd hh:mm:ss.s") ==> 2006-07-02 08:09:04.423 // (new date()).format("yyyy-m-d h:m:s.s") ==> 2006-7-2 8:9:4.18 date.prototype.format = function (fmt) { // author: meizz var o = { "m+": this.getmonth() + 1, // 月份 "d+": this.getdate(), // 日 "h+": this.gethours(), // 小时 "m+": this.getminutes(), // 分 "s+": this.getseconds(), // 秒 "q+": math.floor((this.getmonth() + 3) / 3), // 季度 "s": this.getmilliseconds() // 毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(regexp.$1, (this.getfullyear() + "").substr(4 - regexp.$1.length)); for (var k in o) if (new regexp("(" + k + ")").test(fmt)) fmt = fmt.replace(regexp.$1, (regexp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; }
调用:
var time1 = new date().format("yyyy-mm-dd"); var time2 = new date().format("yyyy-mm-dd hh:mm:ss");
转载:https://blog.csdn.net/vasilis_1/article/details/73649961