单击超链接时如何调用 Servlet

发布于 2024-09-24 22:40:57 字数 102 浏览 0 评论 0原文

在 JSP 页面上,我用一些 id 填充了一个表。我已将这些 ID 设置为超链接。现在我希望如果我单击任何 id,它应该转到 servlet,并且该特定 id 也应该传递到 servlet。

On a JSP Page I have populated a table with some id's. I have made these ID's as hyperlink. Now i want that if I click on any id it should go to a servlet and that particular id should also be passed to the servlet.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

颜漓半夏 2024-10-01 22:40:57

在 JSP 中使用此代码:

  <a href="<%=request.getContextPath() %>/servlet-url?id=<%=id %>">...</a>

创建一个调用 /servlet-url 处的 servlet 的链接,并在请求参数 id 中传递 ID。

Use this code in your JSP:

  <a href="<%=request.getContextPath() %>/servlet-url?id=<%=id %>">...</a>

to create a link which invokes the servlet at /servlet-url and passes the ID in the request parameter id.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文