在 JSP 中创建动态框架
你好 我是使用 JSP 进行前端开发的新手。我有一个问题。在我的项目中,我需要一个带有下拉框和 4 个用于不同操作的提交按钮的表单。当我在下拉框中选择一个值并单击其中一个提交按钮时,应该会出现另一个带有提交按钮的下拉框。当我在第二个下拉框中选择一个选项并单击提交时,数据库中的数据应该是查询并显示在同一页面。其他 3 个提交按钮也是如此。如何最好地实施这一点?我没有使用任何框架——仅使用 jsp 和 servlet。我的想法是在 jsp 中使用 2 个 iframe 来显示动态数据。
Hi
I am new to front end development using JSPs. I have a question. In my project, I have to a form with a drop down box and 4 submit buttons for different actions. When a choose a value in the drop down box and click 1 of the submit buttons, another drop down box with a submit button should appear.When I choose an option in the second drop down box and click submit, data from the database should be queried and displayed in the same page. It is the same with the 3 other submit buttons too. How best to implement this? I am not using any frameworks- only jsp and servlets. My idea is to use 2 iframes in the jsp which display the dynamic data.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论选择哪个选项,您都可以创建一个包含所有可能字段数据的大表单。提交表格并为任何选定选项填写必要的片段。然后在服务器上只需检查选择的内容并相应地处理数据。
You can create one big form containing data for all possible fields no matter which option is selected. Submit the form with necessary fragment filled for any selected option. Then on server just check what is selected and process the data accordingly.