AngularJS / AngularUI:Datepicker只显示年份?
我正在使用AngularUI和AngularJS,我想知道是否有办法只用Datepicker查看年份日历,而不是给他们选择月份和日期的选项。 我试着看文档和js文件本身,但它似乎并不可能。 有人对这个有经验么?
这是我查看的文档(Datepicker):http://angular-ui.github.io/bootstrap/
您可以将最小模式设置为“年”并将日期格式设置为yyyy
$scope.dateOptions = {
formatYear: 'yyyy',
startingDay: 1,
minMode: 'year'
};
DEMO:http://plnkr.co/edit/0SPMYQ6ND7AOfZwDAFB8?p=preview
链接地址: http://www.djcxy.com/p/75941.html