JQuery日历图像更改

时间:2014-02-19 11:42:03

标签: jquery view calendar onchange monthcalendar

我正在制作三月的日历,其中包括每天是包含当天优惠的块(div),但是当这一天过去时,它必须将图像更改为另一个,但必须保持可见。

我该怎么做?我发现要显示特定的日期,星期等,但要做到这一点我感到困惑......

由于

1 个答案:

答案 0 :(得分:0)

我使用了这段代码:

$('#calendar img').each(function () {
  if (new Date($(this).data('date')).getTime() < new Date().getTime()-24*60*60*1000) {
    $(this).css({
      opacity: 0.5,
      border: '2px solid red'
    });
  }
});