我需要在fuelux的datepicker中初始化或设置一个特定的日期。
DatePicker组件默认设置今天的日期,但我需要设置2015年1月1日(例如“01-01-2015”)。
The Code js。
$( '#myDatepicker1')。日期选择器({
allowPastDates:true,
momentConfig:{
文化:'es',
格式:'DD-MM-YYYY'
},
限制:[
{from:'01 -01-2013',to:'01 -01-2014'}
]
});
提前感谢您给予我的帮助。
答案 0 :(得分:0)
使用setDate
方法。
$('#myDatepicker').datepicker('setDate', '01-01-2015');
View documentation。