1

私のhtmlでは、「th:unless」を使いたいです。2 つの変数を比較したいのですが、いずれかが他の変数と一致する場合は、その生のボタンを非表示にしたいと考えています。

ここに私のコードがあります..

Art-in-Nisantasi-Id Art-in-Nisantasi-Text Art-in-Nisantasi-Url Art-in-Nisantasi-Coordinate
<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>

両方が等しくない場合、この td 要素は dom で生成または作成されます

于 2013-10-16T13:49:23.470 に答える