如何禁用跨度的ng-click事件?

时间:2016-05-24 14:03:53

标签: angularjs

我有这段代码:

<span class="fa fa-minus-square-o"
    ng-click="wos.word(xxx)"
    ng-disabled="cursorWait"
    ng-hide="wos.wordFormRowIsDisabled(wf)"></span>

如果cursorWait == true,有没有办法可以阻止ng-click有效?我知道残疾人不会工作:-)

1 个答案:

答案 0 :(得分:6)

执行ng-click="!cursorWait && wos.word(xxx)"可能会有效。不确定你想要在这里实现什么。为什么不使用按钮?