如何在url参数中包含url参数(它将嵌套参数视为原始请求的参数)

时间:2012-11-01 14:13:19

标签: javascript html url-parameters

我希望传递一个网址:

localhost:9090/admin/GroupInfo.action?message=redirect.jsp?sop=here&something=other

我希望收到“redirect.jsp?sop=here&something=other”作为参数“message”的值,但我只在服务器上获得“redirect.jsp?sop=here”。它可能将sop视为父URL的另一个参数。如何避免?

我尝试使用'&'替换它来逃避第二个&,但它无法正常工作

1 个答案:

答案 0 :(得分:2)

使用encoreURIComponent()

encodeURIComponent("redirect.jsp?sop=here&something=other");