js获取url查询字符串参数

Posted qqfontofweb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取url查询字符串参数相关的知识,希望对你有一定的参考价值。

最近看js高级程序设计

对其中查询字符串参数的获得重新写了,当传递一个完整的URL的时候对查询字符串的提取

function getQueryArgs(){
    var qs = (location.search.length > 0 ? location.search.substr(1) : ‘‘),
        //保存每一项
        args = {},
        //得到每一项
        items = qs.length ? qs.split(‘&‘) : [],
        item = null,
        name = null,
        value = null,
        i = 0,
        len = items.length;

        for(i = 0;i<len ;i++){
            item = items[i].split(‘=‘),
            name = decodeURIComponent(item[0])
            value = decodeURIComponent(item[1])
            if(name.length){
                args[name] = value;
            }
        }
        return args;
}
getQueryArgs()
function getQueryArgs(url){
    var qs = (url.length > 0 ? url.substring(url.indexOf(‘?‘)).substr(1) : ‘‘),
        //保存每一项
        args = {},
        //得到每一项
        items = qs.length ? qs.split(‘&‘) : [],
        item = null,
        name = null,
        value = null,
        i = 0,
        len = items.length;

        for(i = 0;i<len ;i++){
            item = items[i].split(‘=‘),
            name = decodeURIComponent(item[0])
            value = decodeURIComponent(item[1])
            if(name.length){
                args[name] = value;
            }
        }
        return args;
}

  

以上是关于js获取url查询字符串参数的主要内容,如果未能解决你的问题,请参考以下文章

JS获取URL的参数

如何用js获取浏览器URL中查询字符串的参数

JS获取Url参数

URL 片段中的多个参数

获取url ?号后面的参数的几种方式

尝试使用 JS 获取查询字符串参数