使用JSP,如何在文本框中放置有效的网址?
答案 0 :(得分:0)
有两种方式[服务器端和客户端]:
在JSP中,您可以执行以下操作来检索当前加载的URL:<input type="text" id="currentURL" value="<%= request.getRequestURI() %> " />
您也可以根据需要尝试使用request.getRequestURL()。
此页面上的更多信息:http://www.theserverside.com/discussions/thread.tss?thread_id=5651
您还可以使用JavaScript检索相同的信息:
var currentURL = document.location;
然后将其分配给您需要的输入字段。