我有这段代码:
<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有效?我知道残疾人不会工作:-)
答案 0 :(得分:6)
执行ng-click="!cursorWait && wos.word(xxx)"
可能会有效。不确定你想要在这里实现什么。为什么不使用按钮?