如何使用jquery从url获取值我正在尝试在jQuery中获取多个值
这是我的网址
https://dev.example.com/front-end-pm/?fepaction=newmessage&=deborah-reynolds&Deborah%20Reynolds
var url =window.location.href;
var str = decodeURIComponent(url.split('=').pop());
我正在获取这些值
deborah-reynolds&Deborah Reynolds
现在我想像这样进一步细分
德博拉·雷诺兹
黛博拉·雷诺兹
答案 0 :(得分:1)
您只需要用&
分隔符再拆分一次。
var url = 'https://dev.example.com/front-end-pm/?fepaction=newmessage&=deborah-reynolds&Deborah%20Reynolds'
var str = decodeURIComponent(url.split('=').pop()).split('&');
// here-------------------------------------------^^^^^^^^^^^--
console.log(str[0])
console.log(str[1])