mobiscroll设置显示年月日时分秒

$('#appDateStart').mobiscroll().datetime({
    theme: 'ios',
    lang: 'zh',
    mode: 'scroller',
    display: 'bottom',
    preset : 'datetime', //日期:年 月 日 时 分
    //stepMinute: 15,
    yearText: '年',
    monthText: '月',
    timeFormat: 'HH:ii:ss',
    dateFormat: 'yyyy-mm-dd',
    timeOrder: 'HHiiss',
    timeWheels: 'HHiiss',
    minDate: new Date(),
    endYear: (new Date()).getFullYear() + 9
});

你可能感兴趣的:(mobiscroll设置显示年月日时分秒)