编写JavaScript函数解析查询字符串
Posted 季诗筱
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编写JavaScript函数解析查询字符串相关的知识,希望对你有一定的参考价值。
今天用到了一个功能,就是获取页面URL的参数,编写的函数如下:
function getQueryStringArgs()
//取得查询字符串并去掉开头的?
var quetyString = (location.search.length > 0 ? location.search.substring(1) : "");
var args = ;//保存数据的对象
//取得每一项
var items = quetyString ? quetyString.split("&") : [];
var item = null;
var name = null;
var value = null;
var i = 0;
var len = items.length;
for(i = 0; i < len; i++)
item = items[i].split("=");
name = decodeURIComponent(item[0]);//decodeURIComponent()是用来对用encodeURIComponent()编码后的string进行解码
value = decodeURIComponent(item[1]);
if (name.length)
args[name] = value;
return args;
调用:var args = getQueryStringArgs();
代码挺简单,主要是解析 location.search
以上是关于编写JavaScript函数解析查询字符串的主要内容,如果未能解决你的问题,请参考以下文章