我在格斗中使用格式mm/yyyy
作为日期选择器:
$('#fromdatetimepicker').datetimepicker({
format: 'MM/YYYY',
showClose: true,
showClear: true,
keepOpen: false,
sideBySide: true,
maxDate: maxDate
});
但是第二次点击日期文本框后,格式会自动更改为mm/dd/yyyy
。请帮我解决它
答案 0 :(得分:1)
我建议使用ember-pikaday,因为它提供了onSelection
等功能,您可以在其中进一步操作数据。
E.g:
// template
{{pikaday-input onSelection=(action 'selectDate') class="input" placeholder="Select date" format="MM/DD/YYYY"}}
// controller or component js
...
actions: {
selectDate(date) {
// do some further handling
this.set('date', date);
},
}
...