首页 > 代码库 > javascript查询字符串参数

javascript查询字符串参数

/* 解析查询字符串 返回包含所有参数的一个对象 */

function getQueryStringArgs(){

   //取得查询字符串并去掉开头的问号
   var qs = (location.search.length > 0 ? location.search.substring(1) : '');

   //保存数据的对象
   args = {};

   //取得每一项
   var items = qs.length ? qs.split('&') : [],
      item = null,
      name = null,
      //在for循环中使用
      i = 0, len = items.length;

   //逐个将每一项添加到args对象中
   for(i = 0 ; i < len; i++){
      item = items[i].split('=');
      name = decodeURIComponent(item[0]);
      value = http://www.mamicode.com/decodeURIComponent(item[1]);>



这样就可以很方便滴获取到URL中的对应的参数值了。


javascript查询字符串参数