这是我的代码
<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>
答案 0 :(得分:3)
尝试在forEach
中使用括号,并在代码中使用双引号"
代替'
:
<c:forEach begin="1" end="${radioCount}">