美文网首页WEB前端程序开发
Jquery获取浏览器URL查询字符串中所有参数

Jquery获取浏览器URL查询字符串中所有参数

作者: Macgx | 来源:发表于2018-08-31 08:52 被阅读3次

通用方法

function getQueryString() {  
        var qs = location.search.substr(1), // 获取url中"?"符后的字串  
        args = {}, // 保存参数数据的对象
        items = qs.length ? qs.split("&") : [], // 取得每一个参数项
        item = null,
        len = items.length;
        for(var i = 0; i < len; i++) {
            item = items[i].split("=");
            var name = decodeURIComponent(item[0]),
            value = decodeURIComponent(item[1]);
            if(name) {
              args[name] = value;
            }
        }
        return args;
    }

相关文章

网友评论

    本文标题:Jquery获取浏览器URL查询字符串中所有参数

    本文链接:https://www.haomeiwen.com/subject/uehhwftx.html