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.
单击链接时如何传递一组特定的数据?例如
<a href="1.jsp">1</a> <a href="2.jsp">2</a>
我想通过 1 点击 1 并通过 2 点击 2。我该怎么做?
您可以使用以下语法对任意参数进行编码:
<a href="1.jsp?param1=value1¶m2=value2&...¶mN=valueN">1</a>
如果您使用的是 servlet,则可以通过以下方式访问用户请求的参数:
String value1 = request.getParameter("param1");
所有参数都是字符串。