index.jsp
<%String[] strings={"apple","book","cat"}; %>
<table height="150">
<tr>
<td align="center" colspan="4">Found</td></tr>
<tr>
<td>name:<input type="text" name="name"/></td>
<td>age:<input type="text" name="age"/></td>
<td>like:
<select>
<%
for(int i=0;i<strings.length;i++){
%>
<option value="<%=strings[i] %>"><%=strings[i] %></option>
<%} %>
</select>
</td>
<td><input type="button" value="found"/></td>
</tr>
<tr>
<td align="center" colspan="4" height="50"></td></tr>
</table>
3.PNG
网友评论