thymeleaf switch在表格中的使用,遇到的空行問題
阿新 • • 發佈:2017-07-21
表格 一位 bsp max hidden 在外 data 小數 輸入 switch在表格中的使用時 如果把<td>寫在<div th:switch="${data.isShow}"> 裏面導致外面出現很多空的<div><p></p></div>,從而導致界面出現空行。放在外面時,顯示正常。
<td><div th:switch="${data.isShow}">
<p th:case="1">
<input th:id="‘targetId_‘+${data.targetId}" th:value="${data.currTarget}"
th:class="form-control" maxlength="5" style="text-align:center;" title="只能輸入1到100的數字,可以有一位小數"></input>
<input th:id="‘targetId_‘+${data.targetId}+‘_hidden‘" th:value="${data.currTarget}"
type="hidden"></input>
</p>
<p th:case="0">
<p th:text="${data.currTarget}"></p>
</p>
</div>
</td>
thymeleaf switch在表格中的使用,遇到的空行問題