JQuery datepicker numberOfMonths:显示当前选择月份最后

前端之家收集整理的这篇文章主要介绍了JQuery datepicker numberOfMonths:显示当前选择月份最后前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 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年将是最大的.

原文链接:https://www.f2er.com/jquery/175848.html

猜你在找的jQuery相关文章