0

我在 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>
4

1 回答 1

2

这应该可行,但我还没有尝试过:

<td class="${array.contains( person.name ) ? 'highlight' : ''}">

因此,如果它包含名称,那么将添加一个 'highlight' 类到td

于 2013-05-15T14:04:00.287 回答