在页面网址上,如:
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
有没有办法获得包含'...&cntnt01articleid=3&cntnt01returnid=15'
由于
亨利
答案 0 :(得分:2)
如果您的网址格式正确,则window.location.href
中会提供查询字符串。
http://en.wikipedia.org/wiki/Percent-encoding
逗号是URI中的保留字符,不应将其用作查询字符串值的一部分。此外,您应该URI-Encoding您的网址。这是通过调用encodeURI在javascript中完成的。