Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想根据我的jsp文件中下拉列表中的选定项显示数据库中的表数据,所以我需要做的就是将该选定值分配给字符串类型的变量,我该怎么做,建议我一段代码以及下拉列表的代码。
假设您的 JSP 页面表单中有一个下拉元素,如下所示:
<select name='ele1'> <option value='a'>A</option> <option value='b'>B</option> ... </select>
提交表单后,可以从 HttpServletRequest 中获取元素值:
String selectedValue = request.getParameter("ele1");
您可以使用 Ajax,查看链接http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=580