您好,登錄后才能下訂單哦!
小編給大家分享一下js格式化日期的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
1.將日期轉(zhuǎn)換為指定的格式
比如轉(zhuǎn)換成 年月日時分秒 這種格式:yyyy-MM-dd hh:mm:ss 或者 yyyy-MM-dd。當然是網(wǎng)上的方法,只是總結下。
可以為Date原型添加如下的方法:
Date.prototype.format = function(fmt) { 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; }
比如我們可以這樣調(diào)用下:
var time1 = new Date().format("yyyy-MM-dd hh:mm:ss"); console.log(time1);
也可以轉(zhuǎn)換成 ”年月日”的格式
var time2 = new Date().format("yyyy-MM-dd"); console.log(time2);
2. 將指定的日期轉(zhuǎn)換為"年月日"的格式,代碼如下:
var oldTime = (new Date("2012/12/25 20:11:11")).getTime(); var curTime = new Date(oldTime).format("yyyy-MM-dd"); console.log(curTime);
3. 將 "時間戳" 轉(zhuǎn)換為 "年月日" 的格式.
比如如下代碼:
var da = 1402233166999; da = new Date(da); var year = da.getFullYear()+'年'; var month = da.getMonth()+1+'月'; var date = da.getDate()+'日'; console.log([year,month,date].join('-'));
看完了這篇文章,相信你對js格式化日期的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。