我想创建一个动态表,当它提供了 no 时接受书籍属性。要在前一页输入的书籍。但我什么也没得到。
这是我的代码:
<table>
<c:forEach begin="1" end= "${ no }" step="1" varStatus="loopCounter">
<tr>
<td>
<input type='text' name="isbn" placeholder="ISBN">
</td>
<td>
<input type="text" name="Title" placeholder="Title">
</td>
<td>
<input type="text" name="Authors" placeholder="Author">
</td>
<td>
<input type="text" name="Version" placeholder="Version">
</td>
</tr>
</c:forEach>
</table>
${no} 是我要输入的书籍数量。我刚来这地方。抱歉,如果标题不清楚。请帮忙。