我在我的角度应用程序jquery datepicker中用于出生日期,我需要在年份范围之间导航,但每次我在选择中选择一年剩余年份,即我已设置为-50岁并且出现10年,当我选择1993年减去50年后离开1943年。
我的指示:
DeelezApp.directive('datepicker', function() {
return {
restrict: 'A',
require : 'ngModel',
link : function (scope, element, attrs, ngModelCtrl) {
$(function(){
element.datepicker({
dateFormat:'yy-mm-dd',
changeMonth: true,
changeYear: true,
yearRange: "c-50:c-10",
onSelect:function (date) {
scope.$apply(function () {
ngModelCtrl.$setViewValue(date);
});
}
});
});
}
} });
因为我能做的年份范围没有改变然后选择一年?
感谢
答案 0 :(得分:0)
我找到了它!
只需更改此行
yearRange: "c-50:c-10"
到
yearRange: "-50:-10"
由于