javascript - Jquery UI Date Picker... only allow Fridays? - Stack Overflow

I want to only allow users to select Fridays. Basically they are choosing the start date for a schedule

I want to only allow users to select Fridays. Basically they are choosing the start date for a schedule, and the schedules always must start on a Friday.

I am not really concerned with whether the other days are displayed or not as long as if they are displayed, then they are disabled.

I want to only allow users to select Fridays. Basically they are choosing the start date for a schedule, and the schedules always must start on a Friday.

I am not really concerned with whether the other days are displayed or not as long as if they are displayed, then they are disabled.

Share Improve this question asked Jun 30, 2010 at 16:29 JD IsaacksJD Isaacks 58k96 gold badges279 silver badges431 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 13

You can use the beforeShowDate option, like this:

​$("#datepicker").datepicker({
    beforeShowDay: function(date) {
        return [date.getDay() == 5];
    }
})​​​​​;​

You can try a demo here, we're just checking if the .getDay() on the date it's trying to show is 5 (Friday), and if so true is the first element in the array, false otherwise, which disables the date in the picker.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743701366a4492628.html

相关推荐

  • javascript - Jquery UI Date Picker... only allow Fridays? - Stack Overflow

    I want to only allow users to select Fridays. Basically they are choosing the start date for a schedule

    16小时前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信