mobiscroll日期控件startYear未设置

时间:2013-01-13 15:24:07

标签: mobiscroll

我有非常直接的MobiScroll日期组件初始化代码如下。

function attachMobiDate(id) {
        var now = new Date();
        $('#'+id).mobiscroll().date({
            minDate: new Date(now.getFullYear(), now.getMonth(), now.getDate()),
            dateFormat: 'dd, M yyyy',
            theme: 'android',
            display: 'modal',
            mode: 'scroller',
            startYear: 2000
        });
    }

一切都很完美。开始年份没有设定。用户界面只显示我2013年和2014年。但是,如果我将'endYear'设置为2020,它的工作正常。 我现在可能在这里出错吗?

1 个答案:

答案 0 :(得分:1)

好的,发现我的错! :)

minDate: new Date(*now.getFullYear()*, now.getMonth(), now.getDate()),

在初始化部分, 再次 尝试设置'startYear'。

当我如下修改minDate并删除'startYear'时,它工作正常!

minDate: new Date(*now.getFullYear()-10*, now.getMonth(), now.getDate()),