form.html
関連タイピング
-
プレイ回数54英語長文187打
-
プレイ回数44英語長文294打
-
プレイ回数56英語長文105打
-
プレイ回数58英語長文717打
-
プレイ回数50英語長文496打
-
プレイ回数41英語長文492打
-
プレイ回数53英語長文240打
-
プレイ回数58英語長文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>