企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[Date文档](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Date "创建一个 JavaScript Date 实例,该实例呈现时间中的某个时刻。Date 对象则基于 Unix Time Stamp,即自1970年1月1日(UTC)起经过的毫秒数。") 语法: ~~~ new Date();//当前时间 //指定时间 new Date(value); new Date(dateString); new Date(year, monthIndex [, day [, hours [, minutes [, seconds [, milliseconds]]]]]); ~~~ ``` var d=new Date();//Mon Aug 10 2016 12:40:21 GMT+0800 (中国标准时间) var d1 = new Date(1453349748749); var d2=new Date("12/31/2016 12:15:45");//格式化时间(谷歌可用 火狐不能) Sat Dec 31 2016 12:15:45 GMT+0800 (中国标准时间) //要想所有浏览器都兼容请使用:var dateTime = new Date("2016/05/20 23:42:00"); var timeStr= "2017-11-09 23:23:23" var time= new Date(timeStr.replace(/-/g,"/")); var d3 = new Date(2016,1,30,12,12,12,345); ``` **Date实例方法:** 格式:Date . prototype . xxx() new Date().getFullYear():获取年 new Date().getMonth():月 (0 ~ 11) new Date().getDate():天 (1 ~ 31) new Date().getHours():小时 (0 ~ 23) new Date().getMinutes():分钟 (0 ~ 59) new Date().getSeconds():秒数(0 ~ 59) new Date().getMilliSeconds():毫秒数(0 ~ 999) ...更多 >[danger] php接受返回的是秒级(10位)时间戳,而date接受和返回的是毫秒级(13位)的时间戳 ## Date 对象方法 | 方法 | 描述 | | :-- | :-- | | [getDate()](https://www.runoob.com/jsref/jsref-getdate.html) | 从 Date 对象返回一个月中的某一天 (1 ~ 31)。 | | [getDay()](https://www.runoob.com/jsref/jsref-getday.html) | 从 Date 对象返回一周中的某一天 (0 ~ 6)。 | | [getFullYear()](https://www.runoob.com/jsref/jsref-getfullyear.html) | 从 Date 对象以四位数字返回年份。 | | [getHours()](https://www.runoob.com/jsref/jsref-gethours.html) | 返回 Date 对象的小时 (0 ~ 23)。 | | [getMilliseconds()](https://www.runoob.com/jsref/jsref-getmilliseconds.html) | 返回 Date 对象的毫秒(0 ~ 999)。 | | [getMinutes()](https://www.runoob.com/jsref/jsref-getminutes.html) | 返回 Date 对象的分钟 (0 ~ 59)。 | | [getMonth()](https://www.runoob.com/jsref/jsref-getmonth.html) | 从 Date 对象返回月份 (0 ~ 11)。 | | [getSeconds()](https://www.runoob.com/jsref/jsref-getseconds.html) | 返回 Date 对象的秒数 (0 ~ 59)。 | | [getTime()](https://www.runoob.com/jsref/jsref-gettime.html) | 返回 1970 年 1 月 1 日至今的毫秒数。 | | [getTimezoneOffset()](https://www.runoob.com/jsref/jsref-gettimezoneoffset.html) | 返回本地时间与格林威治标准时间 (GMT) 的分钟差。 | | [getUTCDate()](https://www.runoob.com/jsref/jsref-getutcdate.html) | 根据世界时从 Date 对象返回月中的一天 (1 ~ 31)。 | | [getUTCDay()](https://www.runoob.com/jsref/jsref-getutcday.html) | 根据世界时从 Date 对象返回周中的一天 (0 ~ 6)。 | | [getUTCFullYear()](https://www.runoob.com/jsref/jsref-getutcfullyear.html) | 根据世界时从 Date 对象返回四位数的年份。 | | [getUTCHours()](https://www.runoob.com/jsref/jsref-getutchours.html) | 根据世界时返回 Date 对象的小时 (0 ~ 23)。 | | [getUTCMilliseconds()](https://www.runoob.com/jsref/jsref-getutcmilliseconds.html) | 根据世界时返回 Date 对象的毫秒(0 ~ 999)。 | | [getUTCMinutes()](https://www.runoob.com/jsref/jsref-getutcminutes.html) | 根据世界时返回 Date 对象的分钟 (0 ~ 59)。 | | [getUTCMonth()](https://www.runoob.com/jsref/jsref-getutcmonth.html) | 根据世界时从 Date 对象返回月份 (0 ~ 11)。 | | [getUTCSeconds()](https://www.runoob.com/jsref/jsref-getutcseconds.html) | 根据世界时返回 Date 对象的秒钟 (0 ~ 59)。 | | getYear() | 已废弃。请使用 getFullYear() 方法代替。 | | [parse()](https://www.runoob.com/jsref/jsref-parse.html) | 返回1970年1月1日午夜到指定日期(字符串)的毫秒数。 | | [setDate()](https://www.runoob.com/jsref/jsref-setdate.html) | 设置 Date 对象中月的某一天 (1 ~ 31)。 | | [setFullYear()](https://www.runoob.com/jsref/jsref-setfullyear.html) | 设置 Date 对象中的年份(四位数字)。 | | [setHours()](https://www.runoob.com/jsref/jsref-sethours.html) | 设置 Date 对象中的小时 (0 ~ 23)。 | | [setMilliseconds()](https://www.runoob.com/jsref/jsref-setmilliseconds.html) | 设置 Date 对象中的毫秒 (0 ~ 999)。 | | [setMinutes()](https://www.runoob.com/jsref/jsref-setminutes.html) | 设置 Date 对象中的分钟 (0 ~ 59)。 | | [setMonth()](https://www.runoob.com/jsref/jsref-setmonth.html) | 设置 Date 对象中月份 (0 ~ 11)。 | | [setSeconds()](https://www.runoob.com/jsref/jsref-setseconds.html) | 设置 Date 对象中的秒钟 (0 ~ 59)。 | | [setTime()](https://www.runoob.com/jsref/jsref-settime.html) | setTime() 方法以毫秒设置 Date 对象。 | | [setUTCDate()](https://www.runoob.com/jsref/jsref-setutcdate.html) | 根据世界时设置 Date 对象中月份的一天 (1 ~ 31)。 | | [setUTCFullYear()](https://www.runoob.com/jsref/jsref-setutcfullyear.html) | 根据世界时设置 Date 对象中的年份(四位数字)。 | | [setUTCHours()](https://www.runoob.com/jsref/jsref-setutchours.html) | 根据世界时设置 Date 对象中的小时 (0 ~ 23)。 | | [setUTCMilliseconds()](https://www.runoob.com/jsref/jsref-setutcmilliseconds.html) | 根据世界时设置 Date 对象中的毫秒 (0 ~ 999)。 | | [setUTCMinutes()](https://www.runoob.com/jsref/jsref-setutcminutes.html) | 根据世界时设置 Date 对象中的分钟 (0 ~ 59)。 | | [setUTCMonth()](https://www.runoob.com/jsref/jsref-setutcmonth.html) | 根据世界时设置 Date 对象中的月份 (0 ~ 11)。 | | [setUTCSeconds()](https://www.runoob.com/jsref/jsref-setutcseconds.html) | setUTCSeconds() 方法用于根据世界时 (UTC) 设置指定时间的秒字段。 | | setYear() | 已废弃。请使用 setFullYear() 方法代替。 | | [toDateString()](https://www.runoob.com/jsref/jsref-todatestring.html) | 把 Date 对象的日期部分转换为字符串。 | | toGMTString() | 已废弃。请使用 toUTCString() 方法代替。 | | [toISOString()](https://www.runoob.com/jsref/jsref-toisostring.html) | 使用 ISO 标准返回字符串的日期格式。 | | [toJSON()](https://www.runoob.com/jsref/jsref-tojson.html) | 以 JSON 数据格式返回日期字符串。 | | [toLocaleDateString()](https://www.runoob.com/jsref/jsref-tolocaledatestring.html) | 根据本地时间格式,把 Date 对象的日期部分转换为字符串。 | | [toLocaleTimeString()](https://www.runoob.com/jsref/jsref-tolocaletimestring.html) | 根据本地时间格式,把 Date 对象的时间部分转换为字符串。 | | [toLocaleString()](https://www.runoob.com/jsref/jsref-tolocalestring.html) | 根据本地时间格式,把 Date 对象转换为字符串。 | | [toString()](https://www.runoob.com/jsref/jsref-tostring-date.html) | 把 Date 对象转换为字符串。 | | [toTimeString()](https://www.runoob.com/jsref/jsref-totimestring.html) | 把 Date 对象的时间部分转换为字符串。 | | [toUTCString()](https://www.runoob.com/jsref/jsref-toutcstring.html) | 根据世界时,把 Date 对象转换为字符串。 实例: ~~~ var today = new Date(); var UTCstring = today.toUTCString(); ~~~ | | [UTC()](https://www.runoob.com/jsref/jsref-utc.html) | 根据世界时返回 1970 年 1 月 1 日 到指定日期的毫秒数。 | | [valueOf()](https://www.runoob.com/jsref/jsref-valueof-date.html) | 返回 Date 对象的原始值。 | **Date静态方法:** ``` console.log(Date.now());//毫秒数 1454353445000 console.log(Date.parse("12/31/2016 12:15:45"));//毫秒数 1483157745000 //世界协调时间:Date.UTC(year,month[,date[,hrs[,min[,sec[,ms]]]]])、 //参数为UTC,中国与UTC的时差是8,也就是比我们东八区早8小时,中国时区要-8 console.log(Date.UTC(2016, 1, 2, 03-8, 4, 5));//823201445000;//Fri Feb 02 1996 03:04:05 GMT+0800 (中国标准时间) var utcDate1 = new Date(Date.UTC(1990, 1, 2, 03-8, 4, 5)); console.log(utcDate1);//Fri Feb 02 1996 03:04:05 GMT+0800 (中国标准时间) ``` 特殊日期对象转时间戳: ~~~ var newDay=new Date();//Mon Nov 05 2018 01:15:29 GMT+0800 (中国标准时间) var b= Number(newDay)//1541351729432 到毫秒 var b=newDay.valueOf();//1541351729432 到毫秒 var b=newDay.getTime();//1541351729432 到毫秒 var b=newDay.getTime();//1541351729432 到毫秒 var b=Date.parse(newDay)//1541351729000 到秒 除以1000就得到1541351729 标准的以秒为单位时间戳 ~~~  格式化日期转时间戳: ~~~ Date.parse('2018-11-29 01:47:24');//1543427244 (除了谷歌浏览器都得不到结果) // 主要对默认的日期格式进行转换, 基于'/'格式的日期字符串,才是被各个浏览器所广泛支持的,‘-’连接的日期字符串,则是只在chrome下可以正常工作 var timeStr= "2017-11-09 23:23:23" var time= new Date(Date.parse(timeStr.replace(/-/g,"/"))).getTime(); ~~~ ①时间戳转格式化日期: ~~~ /** * 和PHP一样的时间戳格式化函数 * @param {string} format 格式 * @param {int} timestamp 要格式化的时间 默认为当前时间 * @return {string} 格式化的时间字符串 * eg: * formatDate('Y-m-d','1350052653');//很方便的将时间戳转换成了2012-10-11 * formatDate('Y-m-d H:i:s','1350052653');//得到的结果是2012-10-12 22:37:33 */ function formatDate(format, timestamp){ var a, jsdate=((timestamp) ? new Date(timestamp*1000) : new Date()); var pad = function(n, c){ if((n = n + "").length < c){ return new Array(++c - n.length).join("0") + n; } else { return n; } }; var txt_weekdays = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"]; var txt_ordin = {1:"st", 2:"nd", 3:"rd", 21:"st", 22:"nd", 23:"rd", 31:"st"}; var txt_months = ["", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"]; var f = { // Day d: function(){return pad(f.j(), 2)}, D: function(){return f.l().substr(0,3)}, j: function(){return jsdate.getDate()}, l: function(){return txt_weekdays[f.w()]}, N: function(){return f.w() + 1}, S: function(){return txt_ordin[f.j()] ? txt_ordin[f.j()] : 'th'}, w: function(){return jsdate.getDay()}, z: function(){return (jsdate - new Date(jsdate.getFullYear() + "/1/1")) / 864e5 >> 0}, // Week W: function(){ var a = f.z(), b = 364 + f.L() - a; var nd2, nd = (new Date(jsdate.getFullYear() + "/1/1").getDay() || 7) - 1; if(b <= 2 && ((jsdate.getDay() || 7) - 1) <= 2 - b){ return 1; } else{ if(a <= 2 && nd >= 4 && a >= (6 - nd)){ nd2 = new Date(jsdate.getFullYear() - 1 + "/12/31"); return date("W", Math.round(nd2.getTime()/1000)); } else{ return (1 + (nd <= 3 ? ((a + nd) / 7) : (a - (7 - nd)) / 7) >> 0); } } }, // Month F: function(){return txt_months[f.n()]}, m: function(){return pad(f.n(), 2)}, M: function(){return f.F().substr(0,3)}, n: function(){return jsdate.getMonth() + 1}, t: function(){ var n; if( (n = jsdate.getMonth() + 1) == 2 ){ return 28 + f.L(); } else{ if( n & 1 && n < 8 || !(n & 1) && n > 7 ){ return 31; } else{ return 30; } } }, // Year L: function(){var y = f.Y();return (!(y & 3) && (y % 1e2 || !(y % 4e2))) ? 1 : 0}, //o not supported yet Y: function(){return jsdate.getFullYear()}, y: function(){return (jsdate.getFullYear() + "").slice(2)}, // Time a: function(){return jsdate.getHours() > 11 ? "pm" : "am"}, A: function(){return f.a().toUpperCase()}, B: function(){ // peter paul koch: var off = (jsdate.getTimezoneOffset() + 60)*60; var theSeconds = (jsdate.getHours() * 3600) + (jsdate.getMinutes() * 60) + jsdate.getSeconds() + off; var beat = Math.floor(theSeconds/86.4); if (beat > 1000) beat -= 1000; if (beat < 0) beat += 1000; if ((String(beat)).length == 1) beat = "00"+beat; if ((String(beat)).length == 2) beat = "0"+beat; return beat; }, g: function(){return jsdate.getHours() % 12 || 12}, G: function(){return jsdate.getHours()}, h: function(){return pad(f.g(), 2)}, H: function(){return pad(jsdate.getHours(), 2)}, i: function(){return pad(jsdate.getMinutes(), 2)}, s: function(){return pad(jsdate.getSeconds(), 2)}, //u not supported yet // Timezone //e not supported yet //I not supported yet O: function(){ var t = pad(Math.abs(jsdate.getTimezoneOffset()/60*100), 4); if (jsdate.getTimezoneOffset() > 0) t = "-" + t; else t = "+" + t; return t; }, P: function(){var O = f.O();return (O.substr(0, 3) + ":" + O.substr(3, 2))}, //T not supported yet //Z not supported yet // Full Date/Time c: function(){return f.Y() + "-" + f.m() + "-" + f.d() + "T" + f.h() + ":" + f.i() + ":" + f.s() + f.P()}, //r not supported yet U: function(){return Math.round(jsdate.getTime()/1000)} }; return format.replace(/[\\]?([a-zA-Z])/g, function(t, s){ if( t!=s ){ // escaped ret = s; } else if( f[s] ){ // a date function exists ret = f[s](); } else{ // nothing special ret = s; } return ret; }); } ~~~  ②数组转格式化时间 ~~~ ;function timeArrayToFormatTime(data,seconds){ seconds=seconds|0; var stime= new Date(data.year,data.month-1,data.date,data.hours,data.minutes,data.seconds); stime=Date.parse(stime)/1000; stime=formatDate('Y-m-d H:i:s',stime+seconds) return stime; } ~~~ 时间对象转时间数组 ~~~ ;function nowTimeObjToArray(timeObj){ timeObj=timeObj||new Date(); var startYear=timeObj.getFullYear(); var startMonth=timeObj.getMonth()+1; var startDay=timeObj.getDate(); var startHours=timeObj.getHours(); var startMinutes=timeObj.getMinutes(); var startSeconds=timeObj.getSeconds(); var timeArr= { year: startYear, month: startMonth, date: startDay, hours: startHours, minutes: startMinutes, seconds:startSeconds }; return timeArr; } ~~~ 时间对象转格式化时间 (2018-11-08 17:03:13 )  时间戳转格式化日期 ~~~ //时间对象转格式化时间,或者时间戳转格式化时间(10位的标准时间戳和13位毫秒时间戳) ;function nowTimeObjToFormatTime(timeObj){ timeObj=timeObj||''; var preg=/(^[0-9][0-9]{9}$)|(^[0-9][0-9]{12}$)/; if(typeof timeObj=='object'&&timeObj instanceof Date){ timeObj=timeObj; }else if(preg.test(timeObj.toString().replace(/(^\s*)|(\s*$)/g,""))){ alert(111) var newStr=timeObj.toString().replace(/(^\s*)|(\s*$)/g,""); if(newStr.length==10){ newStr=newStr+'000'; } timeObj=Number(newStr); timeObj=new Date(timeObj); }else{ timeObj=new Date(); } var startYear=timeObj.getFullYear(); var startMonth=timeObj.getMonth()+1; var startDay=timeObj.getDate(); var startHours=timeObj.getHours(); var startMinutes=timeObj.getMinutes(); var startSeconds=timeObj.getSeconds(); if(startMonth<10){ startMonth='0'+startMonth;//0-11 } if(startDay<10){ startDay='0'+startDay;//1-31 } if(startHours==0||startHours<10){ startHours='0'+startHours;//0-23 } if(startMinutes==0||startMinutes<10){ startMinutes='0'+startMinutes;//0-59 } if(startSeconds==0||startSeconds<10){ startSeconds='0'+startSeconds;//0-59 } var formatTime=startYear+'-'+startMonth+'-'+startDay+' '+startHours+':'+startMinutes+':'+startSeconds; return formatTime; } ~~~  数组转格式化时间