我的代码迭代列表并显示行
<c:if test="${not empty ftp}">
<c:forEach var="event" items="${ftp}">
<tr><td><input type="text" name="hostName" id="hostName" value="${event.hostName}"size="30" maxlength="200"/></td>
<td><input type="text" name="directory" id="directory" value="${event.directory}" size="30" maxlength="200"/></td>
<td><input type="text" name="userName" id="userName" value="${event.userName}" size="20" maxlength="20"/></td>
<td><input type="text" name="password" id="password" value="${event.password}" size="20" maxlength="20" onblur="checkEnableButton();"/></td>
<td><input type="button" id="delete" onclick="if(confirm( 'Do you want to delete')) deleteRow(this);" value="-" /></td></tr>
</c:forEach>
</c:if>
这很好用..但是,如果我的列表是空的,我需要显示一个空白行..?如果我想从 JSP 页面动态删除和添加行,我该怎么办..?