uib-datepicker-popup上的ng-change无法正常工作

时间:2017-10-26 11:43:58

标签: angularjs twitter-bootstrap angular-ui-bootstrap bootstrap-datepicker

ng-change on uib-datepicker-popup无法正常工作

我的HTML中的代码 -

<div class="row">
  <div class="col-md-6">
    <p class="input-group">
      <input type="text" class="form-control" uib-datepicker-popup="{{format}}" ng-model="dt" is-open="popup1.opened" datepicker-options="dateOptions" ng-required="true" close-text="Close" alt-input-formats="altInputFormats" ng-focus="myFocus(123)" ng-change="mychange(987)"/>
      <span class="input-group-btn">
        <button type="button" class="btn btn-default" ng-click="open1()"><i class="glyphicon glyphicon-calendar"></i></button>
      </span>
    </p>
  </div>

我的控制器中的代码 -

  $scope.myChange = function(para1) {
    console.log("myChange -- "+para1);
  }

当用户在不同日期输入或使用选择器选择日期时,期望mychange功能触发。

Plunker链接 - https://plnkr.co/edit/e20qSViEAh9dZ6GEFnVh?p=preview

0 个答案:

没有答案