form.html

関連タイピング
-
src/main/resources
プレイ回数67英語長文294打 -
src/main/resources
プレイ回数83英語長文105打 -
src/main/resources
プレイ回数111英語長文747打 -
src/main/resources
プレイ回数92英語長文717打 -
src/main/resources
プレイ回数98英語長文410打 -
src/main/java
プレイ回数86英語長文187打 -
src/main/java
プレイ回数85英語長文628打 -
src/main/java
プレイ回数88英語長文254打
問題文
(<h2 th:if="${toDoForm.isNew}">sinnkiToDotouroku</h2>)
<h2 th:if="${toDoForm.isNew}">sinnkiToDotouroku</h2>
(<h2 th:unless="${toDoForm.isNew}">ToDohennsyuu</h2>)
<h2 th:unless="${toDoForm.isNew}">ToDohennsyuu</h2>
(<form th:action="${toDoForm.isNew} ? @{/todos/save} : @{/todos/update}")
<form th:action="${toDoForm.isNew} ? @{/todos/save} : @{/todos/update}"
(th:object="${toDoForm}" method="post">)
th:object="${toDoForm}" method="post">
(<input type="hidden" th:field="*{id}">)
<input type="hidden" th:field="*{id}">
(<table>)
<table>
(<tr>)
<tr>
(<th>ToDo</th>)
<th>ToDo</th>
(<td>)
<td>
(<input type="text" th:field="*{todo}">)
<input type="text" th:field="*{todo}">
(<span th:if="${#fields.hasErrors('todo')}")
<span th:if="${#fields.hasErrors('todo')}"
(th:errors="*{todo}" style="color: red;">)
th:errors="*{todo}" style="color: red;">
(era-gaarebahyouji)
era-gaarebahyouji
(</span>)
</span>
(</td>)
</td>
(</tr>)
</tr>
(<tr>)
<tr>
(<th>syousai</th>)
<th>syousai</th>
(<td>)
<td>
(<textarea rows="5" cols="30" th:field="*{detail}">)
<textarea rows="5" cols="30" th:field="*{detail}">
(</textarea>)
</textarea>
(<span th:if="${#fields.hasErrors('detail')}")
<span th:if="${#fields.hasErrors('detail')}"
(th:errors="*{detail}" style="color: red;">)
th:errors="*{detail}" style="color: red;">
(era-gaarebahyouji)
era-gaarebahyouji
(</span>)
</span>
(</td>)
</td>
(</tr>)
</tr>
(</table>)
</table>
(<input th:if="${toDoForm.isNew}" type="submit" value="touroku">)
<input th:if="${toDoForm.isNew}" type="submit" value="touroku">
(<input th:unless="${toDoForm.isNew}" type="submit" value="kousinn">)
<input th:unless="${toDoForm.isNew}" type="submit" value="kousinn">
(</form>)
</form>
(<a th:href="@{/todos}">modoru</a>)
<a th:href="@{/todos}">modoru</a>