AngularJS - 我的datetimepicker不显示日历

我想在我的页面上有下拉日期选择器。AngularJS - 我的datetimepicker不显示日历

这里是我的代码:

<code>http://plnkr.co/edit/UaD8A06ilA6K6MsDL95s?p=preview</code> 

的问题是,与日历菜单不会出现。

回答:

<input type="text" ng-focus="startOpened = true; endOpened = false;" ng-click="startOpen($event)" show-button-bar="false" close-text="Close" ng-required="true" max-date="end" min-date="'1970-12-31'" is-open="startOpened" show-weeks="false" ng-model="startDate" uib-datepicker-popup="MM/dd/yyyy" placeholder="Start date..."> 

这是角度ui提供的datepicker的示例。 为ng-focus,ng-open创建不同的标志。

这是该链接的更多选项。 https://angular-ui.github.io/bootstrap/#!#datepickerPopup

以上是 AngularJS - 我的datetimepicker不显示日历 的全部内容, 来源链接: utcz.com/qa/264897.html

回到顶部