gpt4 book ai didi

jsp - 在 JSP 中的 URL 中发送 innerHTML 文本

转载 作者:行者123 更新时间:2023-12-04 15:43:49 25 4
gpt4 key购买 nike

如何在 JSP 页面中的 onclick 事件处理程序的 url 中发送标记的 innerhtml 文本并在另一个 JSP 页面中获取此值?这是我的代码

<a href="DocumentViewer.jsp">Hello</a>



我想用 URL 发送 Hello。帮助?

最佳答案

您应该在 onclick 事件上传递 URL 中的值并使用

request.getParameter()

在 JSP 页面中。下面是示例代码
<a href="DocumentViewer.jsp?proces=something">Hello</a>

并像这样在 JSP 中获取它。
String pro=request.getParameter("proces");

关于jsp - 在 JSP 中的 URL 中发送 innerHTML 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26422332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com