gpt4 book ai didi

javascript - 正则表达式从 URL 获取特定参数

转载 作者:行者123 更新时间:2023-11-28 14:38:41 25 4
gpt4 key购买 nike

假设我们有一个像这样的 URL

http://localhost:8080/dev.html?organization=test&location=pr&lang=fr

我想制作一个仅接受organization=test的正则表达式,以便将其存储到var中。

万一我有 http://localhost:8080/dev.html?organization=test ,我得到了organization=test。

http://localhost:8080/dev.html?lang=fr&organization=test ,我得到组织=测试。

无论 URL 的构成方式或参数的顺序如何,我都会得到

organization=<organization> 

谢谢

最佳答案

为什么使用 RegEx 或 split ?试试这个:

function getOrganization(){
return new URLSearchParams(location.search).get('organization')
}

(在 IE 中需要 URL API 的填充)

关于javascript - 正则表达式从 URL 获取特定参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48932792/

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