5

所以我的问题很简单。我想在日期选择器上启用特定日期,例如http://tokenposts.blogspot.fr/2011/05/jquery-datepicker-disable-specific.html但我只想要任何一个月的最后一天,例如 2012 年 6 月 30 日、2012 年 7 月 31 日、...

有什么线索吗?

4

1 回答 1

4

这就是你可以做到的......

获取给定年份和月份的最后一天:

function getLastDayOfYearAndMonth(year, month)
{
    return(new Date((new Date(year, month + 1, 1)) - 1)).getDate();
}

beforeShowDay如果日期是上个月的一天,请检查事件:

$('.selector').datepicker(
{
    beforeShowDay: function(date)
    {
        // getDate() returns the day [ 0 to 31 ]
        if (date.getDate() ==
            getLastDayOfYearAndMonth(date.getFullYear(), date.getMonth()))
        {
            return [true, ''];
        }

        return [false, ''];
    }
});
于 2012-07-04T13:53:44.010 回答