您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“怎么在JavaScript中比較日期”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“怎么在JavaScript中比較日期”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。
假設(shè)我們想在 JavaScript 中比較兩個(gè)日期。我們可以通過(guò)這種方式輕松使用 Date 對(duì)象 ( Date()
):
let date1 = new Date(); let date2 = new Date(); if (date1 > date2) { console.log("Date 1 is greater than Date 2"); } else if (date1 < date2) { console.log("Date 1 is less than Date 2"); } else { console.log("Both Dates are same"); }
以上將返回兩個(gè)日期相同,因?yàn)槲覀儧]有傳遞不同的日期:
"Both Dates are same"
現(xiàn)在讓我們傳入不同的日期值:
let date1 = new Date(); let date2 = new Date("6/01/2022"); if (date1 > date2) { console.log("Date 1 is greater than Date 2"); } else if (date1 < date2) { console.log("Date 1 is less than Date 2"); } else { console.log("Both Dates are same"); }
現(xiàn)在將返回以下內(nèi)容:
"Date 1 is greater than Date 2"
幸運(yùn)的是,當(dāng)前兩個(gè)條件失敗時(shí),上面將相等作為最后一個(gè)選項(xiàng)。但是假設(shè)我們嘗試以這種方式將相等作為條件處理:
let date1 = new Date(); let date2 = new Date(); if (date1 === date2) { console.log("Both Dates are same"); } else { console.log("Not the same"); }
它將返回以下內(nèi)容,這是錯(cuò)誤的
"Not the same"
為了處理相等比較,我們使用日期對(duì)象和getTime()
返回毫秒數(shù)的日期方法。但是,如果我們想比較特定的信息,如日、月等,我們可以使用其他日期方法,如getDate()
、getHours()
、和。getDay()
getMonth()
getYear()
let date1 = new Date(); let date2 = new Date(); if (date1.getTime() === date2.getTime()) { console.log("Both are equal"); } else { console.log("Not equal"); }
這將返回:
"Both are equal"
我們可以將不同的日期傳入到日期對(duì)象中進(jìn)行比較:
let date1 = new Date("12/01/2021"); let date2 = new Date("09/06/2022"); if (date1.getTime() === date2.getTime()) { console.log("Both are equal"); } else { console.log("Not equal"); }
正如預(yù)期的那樣,這將返回:
"Not equal"
注意:通過(guò)該
getTime()
方法,我們可以使用所有比較運(yùn)算符執(zhí)行所有形式的日期比較,即>
、<
、<=
、>=
、==
、!=
、===
和!==
。
假設(shè)我們想要比較特定的日期值,比如年份。然后我們可以這樣使用.getYear()
日期方法:
let date1 = new Date("06/21/2022").getYear(); let date2 = new Date("07/28/2021").getYear(); if (date1 < date2) { console.log("Date1 is less than Date2 in terms of year"); } else if (date1 > date2) { console.log("Date1 is greater than Date2 in terms of year"); } else { console.log(`Both years are equal`); }
讀到這里,這篇“怎么在JavaScript中比較日期”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。