//1. 先用moment把時間轉化為moment時間
let time=
moment
("mon jun 06 2020 00:00:00 gmt+0800 (中國標準時間)"
)console.
log(time)
;//moment , _locale: locale, …}
//2. 使用endof('')將當前的原始moment時間物件轉化為自定義事件單位的末尾 如果用year就是取傳入的時間字串的當年的最後一天
let time=
moment
("mon jun 01 2020 00:00:00 gmt+0800 (中國標準時間)").
endof
('month'
)console.
log(time)
;//moment , _locale: locale, …}
//_d: tue jun 30 2020 23:59:59 gmt+0800 (中國標準時間) {}
//_i: "mon jun 01 2020 00:00:00 gmt+0800 (中國標準時間)"
//__proto__: object
//3. 其中_d就是獲取到的值 然後再轉成時間戳即可
let time=
moment
("mon jun 01 2020 00:00:00 gmt+0800 (中國標準時間)").
endof
('month').
unix()
console.
log(time)
;//1593532799
使用moment獲取日期時間
moment format yyyy mm dd hh mm ss 當前時間 moment subtract 10 days format yyyy mm dd 當前時間的前10天時間 moment subtract 1 years format yyyy mm dd 當前時間的前1年時間 mome...
JS 獲取當前年份,月份
function dohandledate return tyear m function dohandleyear tyear function dohandlemonth return m 獲取完整的日期 var date new date var year date.getfullyear v...
PHP獲取當前月份,多種顯示方法
php獲取當前月份有3種常用的顯示方法 1 date m 顯示的月份為jan,feb格式 2 date m 顯示的格式為01,02,03格式 3 date n 顯示的格式為1,2,3格式 如果需要在前端以select框的形式顯示,可以使用如下 selected selected 其中,使用autoc...