Location.href 给出了部分网址

Location.href is giving partial url

本文关键字:href Location      更新时间:2023-09-26

在页面URL上,例如:

http:mysite.com/index.php?mact=News,cntnt01,detail,0&cntnt01articleid=3&cntnt01returnid=15

使用 location.href 将返回

http://mysite.com/index.php?mact=News,cntnt01,detail,0

有没有办法获取完整的URL,包括'...&cntnt01articleid=3&cntnt01returnid=15'

谢谢

亨利

如果您的 URL 格式正确,则查询字符串将在window.location.href中可用。

http://en.wikipedia.org/wiki/Percent-encoding

逗号是 URI 中的保留字符,不应用作查询字符串值的一部分。此外,您应该对 URL 进行 URI 编码。这是在javascript中通过调用encodeURI来完成的。

相关: 我可以在 URL 中使用逗号吗?