1

在我的 html 中,我想使用“th:unless”。我想比较两个即将到来的变量,如果任何一个与另一个匹配,我想隐藏那个原始的按钮。

这是我的代码..

Art-in-Nisantasi-Id Art-in-Nisantasi-Text Art-in-Nisantasi-Url Art-in-Nisantasi-坐标
<h3>All Contents</h3>
<table border="1">
    <tr align="left">

        <th style="width: 20px;">Art-in-Nisantasi-Id</th>
        <th style="width: 100px;">Art-in-Nisantasi-Text</th>
        <th style="width: 50px;">Art-in-Nisantasi-Url</th>
        <th style="width: 50px;">Art-in-Nisantasi-Coordinate</th>
    </tr>



    <tr th:each="contentType:${contentTypes}">
        <td th:text="${contentType.art_in_nisantasi_id}"></td>
        <td th:text="${contentType.art_in_nisantasi_text}"></td>
        <td th:text="${contentType.art_in_nisantasi_url}"></td>
        <td th:text="${contentType.art_in_nisantasi_coordinate}"></td>

    </tr>


    <div>
        <td
            th:unless="${contentType.art_in_nisantasi_id}+'='+${selectedContent.art_in_nisantasi_id}"></td>
        <td th:attr="data-id=${contentType.art_in_nisantasi_id}">
            <button type="button" class="action-addButton" onclick="show">Ekle</button>

        </td>
    </div>

</table>
4

1 回答 1

0

试试这种方式:

   <td th:unless="${contentType.art_in_nisantasi_id == selectedContent.art_in_nisantasi_id}"></td>

当两者不相等时,将在 dom 中生成或创建此 td 元素

于 2013-10-16T13:49:23.470 回答