gpt4 book ai didi

javascript - 在 ng-if 中允许大写和小写

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:11:09 25 4
gpt4 key购买 nike

我有这样的条件

<table   ng-if="name=='john' && name=='MARK'">
//rest of the code
</table>

我的代码将在 ng-if 为真时执行。

现在我的疑问是,即使名称是大写和小写,ng-if 也应该为真..

<table   ng-if="name=='JOhN' && name=='maRK'">
//rest of the code
</table>

这可能吗?我也尝试过使用 if-else 条件。

if(name.toString()='john'){
alert('success')
}
else{
alert('failure')
}

是否正确?

最佳答案

尝试,

<table   ng-if="name.toLowerCase()=='john' && name.toLowerCase()=='mark'">
//rest of the code
</table>

或使用 Angular 小写过滤器

<table   ng-if="(name| lowercase) =='john' && (name | lowercase)=='mark'">
//rest of the code
</table>

关于javascript - 在 ng-if 中允许大写和小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48144322/

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