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的新手。我在从数据库中获取的每一行前面提供了复选框。现在我想删除其复选框已被选中的行。请建议如何在提交表单时完成此任务。我可以在最后进行删除查询,但问题是复选框是否打勾。我们有什么办法request.getParameter("delete_checkbox").value或类似的东西吗?
request.getParameter("delete_checkbox").value
这就是你需要的:
http://theopentutorials.com/examples/java-ee/servlet/getting-checkbox-values-from-html-form-in-servlet/
如教程中所示,值attribute传递记录的 ID。
attribute
在 servlet 中将它们解析为 Long 并将服务器命中到delete.
delete