Two html drop down list event
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have two html drop down list, their value are retrieved from the database by using jsp. <% String query =" SELECT question_text,question_id FROM questions WHERE id = ?"; PreparedStatement stmt = conn.prepareStatement(query); stmt.setString(1,request.getParameter("QID")); ResultSet rs = stmt.executeQuery(); if(!rs.next()) {} else {%> <form action="#" method="post"> <p> First Question </p> <select name="currentQuestion"> <%do{%> <option value="<%=rs.getString("question_id")%>"><%=rs.getString("question_text")%> </option> <%}while(rs.next());