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文件,其中有一个String变量 s。现在我想将它传递给servletusing servlet。在href我给的标签中,
jsp
String
servlet
href
<a href="link?user= <%=s%> "> click me </a>
但它显示了一个错误,我还能如何发送它。
请帮帮我。。
谢谢
这应该可以正常工作,但是这里有一些小错误,我不确定它们是由于此处输入错误还是您的代码中实际存在。 首先有你的链接是这样的:
<a href="link?user=<%=s%> "> click me </a>
看?没有空间。和你的变量一样s,为什么要使用a? 第二个在您的 servlet 中使用它来接收参数:
s
a
request.getParameter("s")
你真的有这样的空间吗?试试这个:>点击我