gpt4 book ai didi

javascript - 如何在按钮单击时应用 ng-class

转载 作者:行者123 更新时间:2023-11-28 13:06:59 24 4
gpt4 key购买 nike

Plunker.

我想将其应用到我的文本框 errorhilight当 ng-model 包含 '' 时的类或undefined ,当提交按钮点击时只需要检查。

<input type="text" class ="errorhilight" ng-model="name"  ng-class="{'errorhilight': (name == '' || name == 'undefined')}">

如何申请errorhilight单击按钮时的类。

最佳答案

有很多方法可以做到这一点。例如

<input type="text" ng-model="name"  ng-class="{errorhilight: highlightErrors && !name}">
<input type="submit" ng-click="validate();">

$scope.validate = function(){
$scope.highlightErrors = true
}

关于javascript - 如何在按钮单击时应用 ng-class,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45751240/

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