如果月份不是当月

时间:2012-04-30 23:53:59

标签: javascript

我们有一个.NET Web服务,它返回JSON,包括字符串格式的日期,如下所示:2012-04-30T00:00:00 + 12:00。

在javascript中,我想要排除月份不是当月的日期。因此,在上述日期,月份为04(4月),当月为5月(无论如何都在新西兰)。所以,我想忽略这个记录,例如伪代码:

if(vMonth == CurrentMonth){
     dothis();
}

我该怎么做?

4 个答案:

答案 0 :(得分:5)

编辑:请参阅下面的Rob G的答案,了解适用于所有浏览器的解决方案。

var dateOne = new Date("2012-04-30T00:00:00+12:00");​​​
var dateTwo = new Date();

if(dateOne.getMonth() == dateTwo.getMonth()) {
    alert("equal");
}

这是jsfiddle: http://jsfiddle.net/Mq5Tf/

有关日期对象的更多信息: MSDN:https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date ES5:http://es5.github.com/#x15.9.2

答案 1 :(得分:3)

var date = new Date();
var currentMonth = date.getMonth();
var yourMonth = 4;
if(yourMonth == currentMonth ){
    /* Do this */
    alert('Hello');
}

答案 2 :(得分:2)

不依赖于解析日期字符串的替代方案:

function checkMonth(ds) {
  var now = new Date();
  var m = now.getMonth() + 1;
  return !!ds.match(now.getFullYear() + '-' + (m<10?'0':'') + m);
}

// on 2012-05-01
alert( checkMonth('2012-04-30T00:00:00+12:00') ); // false
alert( checkMonth('2012-05-01T00:00:00+12:00') ); // false

修改

请注意,检查月份编号仅适用于应忽略或不重要的时区偏移量。虽然2012-04-30T00:00:00+12:00是在4月份,但2012-04-30T14:00:00+12:00将于当地时间5月1日凌晨2点结束。

答案 3 :(得分:0)

// Means April 30, months are indexes in JS
var input = new Date(2012, 03, 30);​​​
// or use format new date("2012-04-30T00:00:00+12:00") suggested in other answer

var currentDate = new Date();

if(input.getFullYear() == currentDate.getFullYear() // if you care about year
   && input.getMonth() == currentDate.getMonth()) {

    // act accordingly
}