我有一个
jquery datepicker的numberOfMonths设置为3,目前当我点击datepicker,左边的月份是当前月份.在大多数情况下,用户只会在今天之前选择一个日期,所以我宁愿选择当前月份是最后一个日历,即三月,四月,五月,而不是五月,六月,七月的当前实施.
非常感谢任何帮助!
解决方法
使用
showCurrentAtPos
option只是为了这个目的:
Specify where in a multi-month display the current month shows,starting from 0 at the top/left.
使用情况如下所示:
$("#datepicker").datepicker({ numberOfMonths: 3,showCurrentAtPos: 2 });
由于它是零为基础的,因此2 0 0 7年将是最大的.