繁体   English   中英

JavaScript日期/时间检查错误

[英]Javascript Date/Time Check Error

在我的应用程序中使用以下代码显示html页面,具体取决于它是今天的日期,还是一天中的哪个时间,例如上午,下午或晚上。 目前是下午2:53,代码仅显示am html页面(这是第一个页面)。 我试图运行console.log命令,但在控制台中什么也没得到,可能是由于变态。

获取日期的第一个功能是正确运行,只是没有正确检查时间。

var inputDate = new Date("5/17/2018");

    // Get today's date
    var todaysDate = new Date();

      // call setHours to take the time out of the comparison
      if(inputDate.setHours(0,0,0,0) == todaysDate.setHours(0,0,0,0)) {
          var hour = new Date().getHours();

          console.log("hour is: " + hour);
                    // between 12 PM and 7 AM respectively
            if(hour => 7 && hour < 12) {
                //morning   (Always running code here no matter what time of day) 
            }
            else if(hour >= 12 && hour <= 18) {
               //afternoon   
            }   
            else {

            //evening or before 7
            }
      }
      else{
           //not today (works if date is not today)
      }

您在if语句中有错别字: =>应该是>=

var inputDate = new Date("5/17/2018");

// Get today's date
var todaysDate = new Date();

// call setHours to take the time out of the comparison
if (inputDate.setHours(0,0,0,0) == todaysDate.setHours(0,0,0,0)) {
  var hour = new Date().getHours();

  console.log("hour is: " + hour);
  // between 12 PM and 7 AM respectively
  if (hour >= 7 && hour < 12) {
    //morning   (Always displaying code here) 
    alert('morning')
  }
  else if (hour >= 12 && hour <= 18) {
    //afternoon
    alert('afternoon')
  }   
  else {
    //evening or before 7
    alert('evening')
  }
}
else {
  //not today
  alert('not today')
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM