LODOP打印用JS獲取的當(dāng)前日期
當(dāng)前位置:點(diǎn)晴教程→知識管理交流
→『 技術(shù)文檔交流 』
該文詳細(xì)一步步解釋JS獲取當(dāng)前時(shí)間的方法,新手小白也看到懂,最后是實(shí)際的獲取當(dāng)前年月份的方法。 function ConsoleDateProperty() {//控制臺輸出屬性 var date = new Date(); console.dir(date); } 圖示: 如圖,可看出Date對象里有很多屬性,可以利用這些屬性獲取年月日。 代碼: function ConsoleDateDPYMD() { var date = new Date();console.log(date); var year = date.getFullYear();console.log(year); var Tmonth = date.getMonth(); console.log(Tmonth); var month = date.getMonth() + 1; console.log(month); var strDate = date.getDate();console.log(strDate); } 圖示: 常見的年月日格式的處理:
由于博文都是抽空寫的,一般都是放草稿箱,每次寫一點(diǎn),所以該文的截圖也是時(shí)間不同。都是獲取的當(dāng)時(shí)的系統(tǒng)時(shí)間。這里說的是打印日期,其實(shí)是點(diǎn)擊預(yù)覽的時(shí)候的日期,不過都是一天內(nèi),沒有到時(shí)間,所以可以看做打印的日期。 Date對象里也可以獲取到具體的時(shí)分秒時(shí)間,可查看本博客另一篇博文:LODOP打印當(dāng)前日期時(shí)間的方法 該文章在 2023/9/28 2:10:55 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |