js中時間戳和日期互相轉化
time是乙個時間戳,通過tolocalestring方法轉化為日期。
time2是當前時間的時間戳,同理轉化為日期。
tolocaledatestring()獲取日期如 2019/9/18
tolocaletimestring()獲取當前時間 如下午3:57:51
tolocalestring() 就是獲取日期和時間
格式化日期時間字串
另外,有時候專案需求需要傳格式化的日期字串,如下
輸出到螢幕格式如
getmonth()方法返回的是0-11月,所以要加一
此外,如果是小於10的話前面就要加上0格式化
js 中 Date 函式常見用法
走在前端的大道上 記得我剛學js的時候只知道date的一些常見的用法,有多常見?var date new date 獲取當前時間 let y date.getfullyear let m date.getmonth 1 10 0 date.getmonth 1 date.getmonth 1 let...
shell 中date 的用法
1.獲取離今天的上週 上月 下週 下月的日期 html view plain copy date d 1 week y m d a date d 1 day y m d a date d 2 day y m d a date d 1 month y m d a date d 1 month y m ...
Shell中date的用法
man date可以看到date的help檔案 date 獲取當前時間 date d 1week y m d 獲取上週日期 day,month,year,hour date date 24 hour y m d 同上 date now date s shell指令碼裡面賦給變數值 輸出 符號 a 當...