gpt4 book ai didi

javascript - html td问题: hide a td value if another has a value 'not available'

转载 作者:行者123 更新时间:2023-11-29 16:29:17 25 4
gpt4 key购买 nike

我有一个 mysql 数据库,其中包含 pdf_availability 列和pdf_file 。下面是我使用 angularjs 查看数据库的 html 表代码的一部分。

<td>{{row.pdf_availability}}</td>

<td><a href="{{row.pdf_file}}">View</a></td>

这可能听起来很荒谬,但我需要 <a>如果 <td> 则隐藏在表中(不是整个 <a> ,仅 pdf_availability = 'not available' ) .

最佳答案

AngularJs 提供 ng-If 来检查条件,试试这个

 <a ng-if="pdf_availability != 'not available'" href="{{row.pdf_file}}">View</a>

关于javascript - html td问题: hide a td value if another has a value 'not available' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54035750/

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