gpt4 book ai didi

angularjs - 根据 Angularjs 中的值 json 隐藏元素

转载 作者:行者123 更新时间:2023-12-03 06:43:02 25 4
gpt4 key购买 nike

我想根据 json 中的值隐藏 div

例如,我有这个 {{product.currency}},其值可以是: £ 或 € 如果该值等于 € 我想隐藏此元素。

最佳答案

使用ng-hide或相反的ng-show相当简单,或者在页面中不使用ng-if

<div ng-hide="product.currency =='€'" >
<!-- or -->
<div ng-show="product.currency !='€'" >
<!-- or -->
<div ng-if="product.currency !='€'" >

还有一种替代方案,但不那么优雅或高效,那就是 ng-switch

花一点时间浏览 API reference docs 左侧菜单中显示的所有核心指令是非常值得的。 。

关于angularjs - 根据 Angularjs 中的值 json 隐藏元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28155696/

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