当前位置:主页 > 网页前端 > AngularJS >

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

时间:2021-05-18 09:48:04 | 栏目:AngularJS | 点击:

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

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

解决方法:重新绑定

setInterval(function () { 
    $scope.$apply(function () { 
      $scope.params.dateDayStart = document.getElementById('dateDayStart').value; 
    }); 
  }, 100); 

您可能感兴趣的文章:

相关文章