gpt4 book ai didi

javascript - 如何使用angular js有条件地设置HTML元素的id属性?

转载 作者:数据小太阳 更新时间:2023-10-29 05:07:22 26 4
gpt4 key购买 nike

我想有条件地设置 HTML 元素的 id 属性。

简单的方法:

<!--  expression = true -->
<div ng-if="expression">
<a href id="this-one">Anchor with id</a>
</div>
<div ng-if="!expression">
<a href>Anchor without id</a>
</div>
output-if-expression-true = <a href id="this-one">Anchor with id</a>

output-if-expression-false= <a href>Anchor without id</a>

我可以使用三元运算符之类的东西来避免这种情况吗?例如……

<a href ng-attr-id="{{expresion ? 'this-one': ''}}">Anchor</a>

最佳答案

如果您已经知道答案,为什么还要问 :-)?试试看,确实是

<a href ng-attr-id="{{expresion ? 'this-one': ''}}">Anchor</a>

关于javascript - 如何使用angular js有条件地设置HTML元素的id属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36308167/

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