我们有一个实例化许多.datepicker对象的系统
我知道我可以这样设置开始日期
$('.selector').datepicker('option', 'firstDay', 4); // i.e. Thursday
是否为所有后续的.datepicker请求默认设置了此值(无需在执行时指定firstDay选项?
答案 0 :(得分:3)
Jquery UI datepicker有很多选项
$.datepicker.setDefaults({
constrainInput: true, // prevent letters in the input field
minDate: new Date(), // prevent selection of date older than today
showOn: 'button', // Show a button next to the text-field
autoSize: true, // automatically resize the input field
altFormat: 'yy-mm-dd', // Date Format used
firstDay: 4 // Start with Thursday
})
答案 1 :(得分:0)
您可以使用$.datepicker.setDefaults( options )
进行操作。选中here
$.datepicker.setDefaults({
firstDay: 4,
});