我试图在某种情况下禁用按钮。我尝试使用data-ng-class但是当我更改标签或在页面之间切换时,按钮会间歇性地激活。想了解我该如何实现这一功能。
<button type="button" class="btn btn-success" href="" data-ng-click="saveValueSellerBid(false);" data-ng-class="{disabled: currentQuote.acceptPricingSellerDisabled}">
<svg class="icon icon-checkmark"><title>Accept value seller offer</title><use xlink:href="#icon-checkmark"></use></svg>
<strong translate="Accept_Pricing_Seller_Offer"></strong>
</button>
答案 0 :(得分:1)
请尝试使用此属性:
ng-disabled="currentQuote.acceptPricingSellerDisabled"