如何在JSP页面的onclick事件处理程序中在url中发送标记的innerhtml文本,并在另一个JSP页面中获取该值?这是我的代码 a href="DocumentViewer.jsp"Hello/a 我想发送带URL的Hello.救命? 您应该在onclic
<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");