【前端】提取URL中的各个GET参数

 /****************************
* 有这样一个URL:http://item.taobao.com/item.htm?a=1&b=2&c=&d=xxx&e,
* 请写一段JS程序提取URL中的各个GET参数(参数名和参数个数不确定),
* 将其按key-value形式返回到一个json结构中,
* 如{a:'1', b:'2', c:'', d:'xxx', e:undefined}。
****************************/ function foo(url) {
var json = {};
var regExp = /[\?\&](\w+)(=?)(\w*)/g; do {
arr = regExp.exec(url);
// console.log(arr); // arr = [完整的字符串, key, 等号或'', value或''] if (arr) {
var key = arr[1];
var value = arr[3];
// arr[2] === ''时, value = undefined
if (!arr[2])
value = undefined; json[key] = value;
}
} while (arr); return json;
} // ======test======
! function () {
var url = 'http://item.taobao.com/item.htm?a=1&b=2&c=&d=xxx&e';
console.log(foo(url));
} ();
上一篇:apache 日志为每个域名独立配置单独的日志文件


下一篇:JS---DOM---事件冒泡和阻止事件冒泡,总结事件