我在 gsp 中有一个包含 10 个不同值的表:
<table class="table table-striped">
<tr>
<th scope="row">Name:</th>
<td>
${person.name}
</td>
</tr>
<tr>
<th scope="row">Address:</th>
<td>
${person.address}
</td>
</tr>............
我需要突出显示(如果它们存在于 gsp 中也可用的数组中,则更改某些值的背景或文本颜色。
这可能吗?例如使用 g:if? 喜欢 :
<tr>
<th scope="row">Name:</th>
<td>
<g:if ${array}.contains("${person.name}")>
//change styling of this cell
${person.name}
</g:if>
</td>
</tr>