这是我的代码
<c:set var="radioCount" scope="session" value="${radiocount}"/>
我想创建一个表,该表的行数不等于radiocount,因此尝试使用以下表达式但出现错误
<c:forEach begin='1' end='radioCount'>
<tr>
<td>
<input style='width:500px' type='text' / >
</td>
</tr>
</c:forEach>
最佳答案
尝试在forEach
中使用方括号,并在代码中使用双引号"
代替'
:
<c:forEach begin="1" end="${radioCount}">