根据 Angularjs 中的值 json 隐藏元素
Hide element depending on value json in Angularjs
我想根据 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 左侧菜单中显示的所有核心指令是非常值得的。
我想根据 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 左侧菜单中显示的所有核心指令是非常值得的。