为什么md-tooltip初始化错误的日历日期Angular JS?

时间:2018-08-14 07:41:41

标签: angularjs datepicker

如何将1880年1月更改为2018年8月?

这是我的工作副本https://codepen.io/anon/pen/VBNbWM

   <div>Hover on me to open calendar
    <md-tooltip ng-init="ShowStartDateCalendar()" ng-show="calendarShow" style="width:700px;height:400px;display:inline-flex;">

      <md-calendar ng-init="ShowStartDateCalendar()"  id="startCalendar" ng-model="myDate" ng-if="calendarShow">
      </md-calendar>

      <md-calendar ng-init="ShowStartDateCalendar()"  id="endCalendar" ng-model="myDate" ng-if="calendarShow">
      </md-calendar>
    </md-tooltip>
</div>

这是我的控制器

 $scope.calendarShow = true;[![result][1]][1]
 $scope.myDate = new Date();

0 个答案:

没有答案