从 md-list-item (AngularJS Material) 中移除点击行为

Leo*_*eon 2 css angularjs material-design angular-material

在 AngularJS Material 中,我想要一个简单的列表,而不是可点击的项目,只是具有正确间距的文本。我无法制作不可点击的列表!

我查看了文档,但我不明白为什么总是添加 class="md-clickable"...这是我的代码:

https://codepen.io/anon/pen/zaJpGY

<md-content class="acc-content">


          <md-list>
              <md-list-item>
                <md-checkbox ng-disabled="true" ng-checked="true"></md-checkbox>
                <p class="md-list-item-text">Agree to terms and conditions</p>
              </md-list-item>
              <md-list-item>
                <md-checkbox></md-checkbox><p>Provide personal details</p>
              </md-list-item>
              <md-list-item>
                <md-checkbox></md-checkbox><p>Bank details</p>
              </md-list-item>
          </md-list>


    </md-content>
Run Code Online (Sandbox Code Playgroud)

如何使这些列表项不可点击?

Zoo*_*oly 5

一个解决方案是禁用您的list-item.

<md-content class="acc-content">
      <md-list>
          <md-list-item ng-disabled="true"> <!-- here -->
            <md-checkbox ng-disabled="true" ng-checked="true"></md-checkbox>
            <p class="md-list-item-text">Agree to terms and conditions</p>
          </md-list-item>
          <md-list-item>
            <md-checkbox></md-checkbox><p>Provide personal details</p>
          </md-list-item>
          <md-list-item>
            <md-checkbox></md-checkbox><p>Bank details</p>
          </md-list-item>
      </md-list>
</md-content>
Run Code Online (Sandbox Code Playgroud)