如何禁用md-select [英] How to disable md-select

查看:151
本文介绍了如何禁用md-select的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要禁用md-select,但是我在Angular文档中找不到它.

I need to disable a md-select but I couln't find it in the Angular documentation.

这是我的代码:

<md-select ng-model="idSelectedMonth" placeholder="Month"> 
    <md-option ng-repeat="month in months" ng-value="month.number">
        {{month.number}}
    </md-option>
</md-select>

推荐答案

您可以在md-select标记上使用ng-disabled="true",如下所示

you can use ng-disabled="true" on md-select tag like below

(function () {
  'use strict';
   var app = angular.module("App",["ngMaterial"]);


 
    app.controller("ctrl", [function () {
        /* jshint validthis: true */
        var vm = this;

        vm.title = "Hello World !";
        
        vm.items = [
          {id:-1, text:"No Selection"},
          {id:1, text:"Item 1"},
          {id:2, text:"Item 2"},
          {id:3, text:"Item 3"},
          {id:4, text:"Item 4"},
            
          ];
        
        return vm;
    }]);
    
  
})();

<!DOCTYPE html>
<html ng-app="App">


<head>
  <link rel="stylesheet" href="style.css" />
  <link rel="stylesheet" href="https://gitcdn.xyz/repo/angular/bower-material/master/angular-material.css" />

  <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular.js"></script>

  <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular-animate.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.7/angular-aria.js"></script>

  <script src="https://gitcdn.xyz/repo/angular/bower-material/master/angular-material.js"></script>


  <script src="app.js"></script>
</head>

<body>
  <div ng-controller="ctrl as vm">
    <h1>{{vm.title}}</h1>
    <md-input-container>
      <label>Please choose</label>
      <md-select flex ng-model="vm.selected" ng-disabled="true">
        <md-option ng-value="item" ng-repeat="item in vm.items">
          <span ng-show="item.id>0"> {{item.text}}</span>
          <span ng-show="item.id<0" class="highlight"> {{item.text}}</span>
          </md-option>
      </md-select>
    </md-input-container>
  </div>
  
  
</body>

</html>

您可以检查是否将ng-disable ="true"设置为"false"

You may check with making the ng-disable="true" with "false"

这篇关于如何禁用md-select的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆