angularjs – 如何捕获引导datepicker更改事件?

前端之家收集整理的这篇文章主要介绍了angularjs – 如何捕获引导datepicker更改事件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
现在我试图在用户更改日期之后做某事.但似乎我忽略了ng的变化.这是我的代码示例:
<input ng-change='changedate()'
                       type="text" 
                       starting-day="2" 
                       show-button-bar="false" 
                       show-weeks="false" 
                       class="form-control addTicketDateInput" 
                       datepicker-popup="dd MMM" 
                       ng-model="startdate" 
                       is-open="openstart"                         
                       datepicker-options="dateOptions"           
                       ng-required="true"
                       close-text="Close" />
in my controller:
$scope.changedate=function(){
  console.log($scope.startdate);
}

任何想法?

当$范围更改时,您可以关注.

这样的事情

$scope.startdate;

$scope.$watch("startdate",function(newValue,oldValue) {
    console.log("I've changed : ",startdate);
});
原文链接:https://www.f2er.com/angularjs/142583.html

猜你在找的Angularjs相关文章