美文网首页JSP专题
应用Java程序片段动态生成下拉列表

应用Java程序片段动态生成下拉列表

作者: 神坛下的我 | 来源:发表于2018-08-17 12:16 被阅读0次

    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

    相关文章

      网友评论

        本文标题:应用Java程序片段动态生成下拉列表

        本文链接:https://www.haomeiwen.com/subject/pfvzbftx.html