gpt4 book ai didi

javascript - 从 URL 正则表达式和 javascript 获取查询字符串

转载 作者:行者123 更新时间:2023-11-30 18:31:42 24 4
gpt4 key购买 nike

我可以使用正则表达式和 javascript 从这样的 url 获取查询字符串:但是我需要摆脱这些 %22...这些不会出现在 IE 中,只出现在 FF 中..我该怎么做那?在 k=.. 但没有 %22.. 之后需要一切

 <script type="text/javascript">document.write('<div class="DynamicSearchTitle">
Showing All Results For ' +
location.href.match(/\&k\=(.+)/)[1]+ ' Matches </div>');
</script>

网址

http://mysite/sites/dev/contact-us/Pages/LocationSearchTestPage.aspx?s=bcs_locations&k=%22Hospital%22%20OR%20%22Office%22

最佳答案

URL 已损坏,因此我无法查看整个代码,但我认为您要找的是 decodeURI-function .

decodeURI("%22")

例如会返回“

从您的问题中转义 url:

decodeURI("&k=%22Hospital%22%20OR%20%22Office%22");

返回 &k="Hospital"OR "Office"

关于javascript - 从 URL 正则表达式和 javascript 获取查询字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9457206/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com