44

使用这个功能,我得到了 7 天的差价;如何测试日期是否早于当前日期?

function validateDate() {
    pickedDate = Date.parse("05-Jul-2012".replace(/-/g, " "));
    todaysDate = new Date();
    todaysDate.setHours(0, 0, 0, 0);
    dateDifference = Math.abs(Number(todaysDate) - pickedDate);
    //7 Days=604800000ms
    if (dateDifference > 604800000) {
        return false;
    } else {
        return true;
    }
}
4

8 回答 8

62

您可以直接将两个日期比较为

return pickedDate <= todaysDate

对于考虑毫秒的确切日期比较,您可以使用 getTime() 方法

您可以像所做的那样解析日期:

pickedDatestr = "09-Apr-2010"
var pickedDate = new Date(Date.parse(pickedDatestr.replace(/-/g, " ")))
于 2012-07-05T12:31:44.940 回答
25

对于日期比较(没有时间):

function isDateBeforeToday(date) {
    return new Date(date.toDateString()) < new Date(new Date().toDateString());
}

isDateBeforeToday(new Date(2016, 11, 16));

测试用例:

// yesterday
isDateBeforeToday(new Date(2018, 12, 20)); // => true

// today
isDateBeforeToday(new Date(2018, 12, 21)); // => false

// tomorrow
isDateBeforeToday(new Date(2018, 12, 22)); // => false
于 2016-11-30T14:08:16.400 回答
5

我提出这个问题是因为我试图检查我从后端获得的 Java.util.Date 是否在今天之后。

最后我找到了一个非常简单的解决方案——通过比较毫秒,像这样:

  isAfterToday(date) {
    return new Date(date).valueOf() > new Date().valueOf();
  }

该功能在此处valueOf()记录。

于 2020-02-13T20:19:47.563 回答
2

试试这个功能

function checkDate(day, month, year)
{
    var regd = new RegExp("^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})\$");

    var date = month + "/" + day + "/" + year;
    var date = new Date(date);
    var today = new Date();

    var vdob = regd.test(date);

    var err_txt = "" ;

    if(date.getDate() != day || (date.getTime()>today.getTime()))
    {
            err_txt+=("Please select a valid Date.\n")
    }

    return (err_txt);
}
于 2012-07-05T12:34:10.903 回答
1
new Date() > new Date('2022-01-24')

就我而言,我不在乎时间。

于 2022-01-18T00:39:44.697 回答
0

以下将检查日期是否在今天之前:

function isBeforeToday(){
  var today = new Date((new Date()).toString().substring(0,15));
  return date < today;
}

这通过在从其相应的日期字符串中剥离所有时间信息后创建一个新的日期对象来工作:

Tue Mar 06 2018 16:33:15 GMT-0500 (EST)-> Tue Mar 06 2018->Tue Mar 06 2018 00:00:00 GMT-0500 (EST)

于 2018-03-06T21:37:26.853 回答
0
if(this.dateString1.getFullYear() <= this.dateString2.getFullYear() )//check the year
  { 
    // console.log("date1+date2"+this.dateString1.getFullYear()+this.dateString2.getFullYear())
    if(this.dateString1.getMonth() <= this.dateString2.getMonth())//check the month
      {
        // console.log("date1+date2"+this.dateString1.getMonth()+this.dateString2.getMonth())
        if(this.dateString1.getDate() < this.dateString2.getDate())//check the date
        this.toastr.error("Project Start Date cannot be Previous Date");
          return;
      }
  }
于 2019-03-11T12:34:09.120 回答
-1

您可以使用 '<, '>' 等直接比较 2 个日期。

function validateDate(date) {
    //get start of day using moment.js
    const now = Moment().startOf('day').toDate();
    if (date < now) {
        return false; //date is before today's date
    } else {
        return true; //date is today or some day forward
}
于 2018-06-23T17:16:19.050 回答