ng-option选项禁用

禁用下拉选项:
ng-options="n.key as n.value disable when n.disabled for n in options"
angular.forEach($scope.options, function(item, index) {
      if (item.key=== '300') {
        item.disabled = true;
      }
  });

posted on 2021-01-16 21:15  渐行渐远的那些人  阅读(256)  评论(0编辑  收藏  举报