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 中制作一个可编辑的表格。我还想包括一个删除按钮,另一方面,当我单击删除按钮时,我想删除该行并删除数据库中的条目。
我在 Liferay portlet 上使用 jsp 和 MySQL。
你能帮我么?
提前致谢!!
您可以在 JSP 中的每一行前面放置一个名为“删除条目”的链接。此链接将执行一个从 JSP 获取参数的 Servlet py。看起来像这样的东西:
<a href="/DeleteServlet?id=<%=your_id_row%>"Delete entry</a>
然后在您的 Servlet 的 doGet 方法中获取 id 参数String id = request.getParameter("id"); ,然后通过 SQL 查询删除该行。
String id = request.getParameter("id");