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.
我想通过超链接传递一个(动态)变量。
sname = "my image location"; out.println("hyperlink targeted_url name = sname ");
在 target_url 上:
myvalue = request.getParameter("name").toString();
但是每当我尝试输出该位置时,输出都会显示sname。
有什么解决办法吗?我不想使用会话、cookie 或表单。
是否可以在超链接中?
您没有在 println 中评估 sname。这将做到这一点:
out.println("hyperlink targeted_url name = " + sname);
您尚未显示创建链接的位置,但在执行此操作时,您需要做同样的事情 - 附加 sname 变量,而不是将其作为字符串文字包含在内。