angular ng-model 无法获取值处理方式

前端之家收集整理的这篇文章主要介绍了angular ng-model 无法获取值处理方式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

该问题是由angular使用jq日期插件导致的无法双向绑定

<input id="dateDayStart" ng-model="dateDayStart" />

解决方法:重新绑定
setInterval(function () {  
       $scope.$apply(function () {  
           $scope.params.dateDayStart = document.getElementById('dateDayStart').value;  
       });  
   },100);
原文链接:https://www.f2er.com/angularjs/147986.html

猜你在找的Angularjs相关文章