<tr th:each="book : ${books}"> <td th:text="${book.author}"></td> <td th:text="${book.title}"></td> <td th:text="${book.url}"></td> <script th:inline="javascript">//一定要加上這句 function localRefresh() { // 裝載局部刷新返回的頁面 $('#table_refresh2').load("/local/"+[[${book.ID}]]);//這里直接可以使用thymeleaf中的變量,通過內(nèi)聯(lián)樣式 } </script> </tr>