我需要从以下字符串中提取 url 参数
?theAccount=someData&theToken=sometoken&mediaId=someid
所以我想要someData sometoken someid
这是我正在使用的功能
function getParams( name ) {
var str = window.location.search;
var r = new RegExp("/(^\?|&+)"+name+"(\=)/");
var result = r.exec(str);
if (r) { return result; }
return "";
}
像这样称呼getParams(theAccount);
但它不起作用并保持“无效的正则表达式”。任何帮助深表感谢。