$(function () { //要对比的值 var mysqlanswer = $("#wds-mysqlcuranswer").val(); // topic-options为<ul>的样式 var lis = $(".topic-options li"); for (var i = 0; i < lis.length; i++) { var li = $(lis[i]); var op
九.局部变量(local variable) 之前在th:each中遇到过局部变量 <tr th:each="prod : ${prods}"> ... </tr> 其中prod就是局部变量. 除此之外,thymeleaf提供了另外一种声明方式,通过使用th:each,语法如下: <div th:with="firstPer=${persons[0]}"> <p>The name of the first person