gpt4 book ai didi

javascript - 在 Angular js Controller 中使用类禁用按钮

转载 作者:行者123 更新时间:2023-11-30 14:49:32 25 4
gpt4 key购买 nike

我有几个类为 btn-danger 的按钮。我需要使用条件禁用这些按钮。

我的 Controller 包含以下代码:

if($scope.valuess == 1134){
document.getElementsByClassName("btn-danger").disabled = true;
}

但它显示错误。请帮助我。

我有很多相同类别的页面。因此无法更改按钮格式。我正在单独在 Controller 页面中寻找解决方案..

最佳答案

您可以使用 ng-disabled 来禁用按钮。

<button ng-disabled="checked">Button</button>

更多详情:ng-disabled

if($scope.valuess == 1134){
$scope.checked = true;
}

关于javascript - 在 Angular js Controller 中使用类禁用按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48376845/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com