JavaScript 如何检查输入日期是否等于今天的日期

JavaScript 如何检查输入日期是否等于今天的日期

我们在本教程中学习使用JavaScript检查输入日期是否等于今天的日期。有时,我们需要从用户的输入框中获取各种格式的日期,并检查输入日期和今天的日期是否匹配。

在这里,我们将学习两种方法来检查输入日期与今天的日期是否相等。

通过分别比较年、月、日

用户可以使用各种方法,如getFullYear()、getMonth()和getDate(),从Date对象的时间戳中获得完整的年份、月份和日期。此外,我们还可以从用户输入的字符串中获得年、月、日,方法是用分隔符将其分割。

之后,我们可以比较两个时间戳的年、月、日,以检查输入日期是否等于今天的日期。

语法

用户可以按照下面的语法来匹配输入日期和今天的日期是否相等。

let inputYear = dateInput.value.split("/")[0];
let inputMonth = dateInput.value.split("/")[1];
let inputDate = dateInput.value.split("/")[2];
if (current_date.getFullYear() == inputYear && current_date.getMonth() == inputMonth - 1 && current_date.getDate(); == inputDate) {
   // date is equal to today’s date
} else{
   // date is not equal to today’s date
}

在上面的语法中,在用’/’分割输入字符串后,我们得到一个由三个值组成的数组。第一个值是年,第二个值是月,第三个值是日期。

算法

用户可以遵循以下算法。

  • 第1步 – 从用户那里获得特定格式的日期。

  • 第2步–分割日期字符串并提取年、月、日。在这里,我们使用了JavaScript的split()方法来分割日期字符串。

  • 第3步 – 使用new Date()构造函数来创建一个等于今天的日期。

  • 第4步 – 使用getFullYear(), getMonth(), and getDate()方法从今天的日期中提取年、月、日。

  • 第5步 – 比较两个时间戳的年份、月份和日期。getMonth()方法返回0到11之间的月份。因此,我们需要将月份与inputMonth-1进行比较。

  • 第6步 – 如果两个日期的三个属性都匹配,那么输入的日期就等于今天的日期。

示例

在下面的例子中,我们已经创建了compareDate()函数。当用户按下提交按钮并在输入栏中输入日期字符串时,就会调用compareDate()函数。

compareDate()函数实现了上述算法,以检查输入日期是否等于今天的日期。

<html>
<body>
   <h3>Comparing the <i>date, month, and year</i> separately to check if input the date is equal to today's date </h3>
   <h4>Enter the date in yyyy/mm/dd format.</h4>
   <input type="text" id="dateInput" />
   <button id = "submit" onclick = "compareDate()"> submit </button>
   <p id = "output"> </p>
   <script>
      let output = document.getElementById("output");
      let dateInput = document.getElementById("dateInput");
      function compareDate() {
         // split the input string
         let inputYear = dateInput.value.split("/")[0];
         let inputMonth = dateInput.value.split("/")[1];
         let inputDate = dateInput.value.split("/")[2];

         let current_date = new Date();
         // get the month, year, and date from the time stamp
         let year = current_date.getFullYear();
         let month = current_date.getMonth();
         let day = current_date.getDate();
         // compare year, month, and date
         if (year == inputYear && month == inputMonth - 1 && day == inputDate) {
            output.innerHTML = "Date is equal to today's date!";
         } else {
            output.innerHTML = "Date is not equal to today's date!";
         }
      }
   </script>
</body>
</html>

使用toDateString()方法

我们可以对Date对象的时间戳使用toDateString()方法,它只返回时间戳的日期字符串。

我们可以使用从用户输入得到的任何值来创建一个新的Date对象的时间戳,并使用toDateString()方法获得日期字符串。接下来,我们还可以创建代表今天的日期的当前日期,并使用toDateString()方法。

最后,我们可以比较两个时间戳的日期字符串。

语法

用户可以按照下面的语法,使用toDateString()方法来检查输入的数据是否等于今天的日期。

let [year, month, date] = dateInput.value.split(",");
let inputDate = new Date(year, month - 1, date);
let current_date = new Date();
if (inputDate.toDateString() == current_date.toDateString()) {
   // it’s today’s date.
} else {
   // It’s not matching with today’s date
}

在上面的语法中,我们使用年、月-1和日期值创建了输入日期的时间戳。由于Date对象对一个月的取值在0到11之间,我们需要提供月-1。

示例

下面的例子从用户的文本输入框中获取特定格式的日期字符串。之后,我们从字符串中提取了年、月、日,并创建了一个新的日期。

接下来,我们比较了两个时间戳的日期字符串。

<html>
<body>
   <h3>Using the <i> toDateString() </i> method to check if input the date is equal to today's date </h3>
   <h4>Enter the date in yyyy,mm,dd format.</h4>
   <input type = "text" id = "dateInput" />
   <button id = "submit" onclick = "compareDate()"> submit </button>
   <p id = "output"> </p>
   <script>
      let output = document.getElementById("output");
      let dateInput = document.getElementById("dateInput");
      function compareDate() {
         // extract the year, month, and date
         let [year, month, date] = dateInput.value.split(",");
         let inputDate = new Date(year, month - 1, date);
         let current_date = new Date();
         if (inputDate.toDateString() == current_date.toDateString()) {
            output.innerHTML = "Date is equal to today's date!";
         } else {
            output.innerHTML = "Date is not equal to today's date!";
         }
      }
   </script>
</body>
</html>

在上述输出中,用户可以观察到,以无效的格式输入日期将在控制台中产生一个错误。

用户学会了两种方法来检查日期是否等于今天的日期。但是,用户也可以使用setHours()方法。我们可以在日期对象中设置小时数为0,然后与今天的日期进行比较来检查是否相等。

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

JavaScript 教程