我提出的条件是日期应该从当年的11月1日到明年的2月10日
这就是我试过的
if((date.getDate() >= 1 && date.getMonth() === 11 && date.getFullYear()) && (date.getDate() <= 10 && date.getMonth() === 2 && date.getFullYear + 1)){
condition satisfied
}
显然哪些不起作用。在javascript中使用这种条件的正确方法是什么。
答案 0 :(得分:1)
这是一个有效的解决方案:
function check(date) {
currentYear = new Date().getFullYear()
return date > new Date(currentYear + '-11-01') && date < new Date(currentYear + 1 + '-02-10')
}
console.log(check(new Date())); // currently false
console.log(check(new Date('2018-12-01'))); // true
console.log(check(new Date('2019-01-31'))); // true
按如下方式使用:
if(check(date)) {
...
}
答案 1 :(得分:1)
您可以轻松使用Moment.js
let checkDifferenceDate = moment() >= moment("12/01/"+moment().year()) && moment() <= moment("01/31/"+moment().add(1,'year').year())
if(checkDifferenceDate){
//You logic here !
}
答案 2 :(得分:0)
代码不起作用,因为在比较日期时,您必须比较整个日期,而不仅仅是零件。您可以从Date实例获取当前年份,然后使用它创建限制日期以与其进行比较,例如
function testDate(date) {
var year = new Date().getFullYear();
return date >= new Date(year, 10, 1) && // 1 Nov current year
date <= new Date(year + 1, 1, 11) - 1; // 10 Feb next year at 23:59:59.999
}
// Some tests
[new Date(2018,9,31), // 31 Oct 2018
new Date(2018,10,1), // 1 Nov 2018
new Date(2019,1,10), // 10 Feb 2018
new Date(2019,1,11), // 11 Feb 2018
new Date()] // Current date
.forEach(function(date) {
console.log(date.toLocaleString(undefined, {day: '2-digit',
month:'short', year:'numeric'}) + ': ' + testDate(date));
});
&#13;
以上所有日期都被视为主持人的本地日期。