JS获取URL参数

Posted 南夏de博客

tags:

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

 
//获取URL参数
 name 参数名称 
 
var getParam = function(name){
        var search = document.location.search;
        var pattern = new RegExp("[?&]"+name+"\=([^&]+)", "g");
        var matcher = pattern.exec(search);
        var items = null;
        if(null != matcher){
                try{
                        items = decodeURIComponent(decodeURIComponent(matcher[1]));
                }catch(e){
                        try{
                                items = decodeURIComponent(matcher[1]);
                        }catch(e){
                                items = matcher[1];
                        }
                }
        }
        return items;
};

 

银联二维码H5项目,支付成功页面,需要获取url参数。

以上是关于JS获取URL参数的主要内容,如果未能解决你的问题,请参考以下文章

求教js获取url参数

怎么用js来加密url的传递参数

js获取url参数值的两种方式

js获取url地址里的数据

js获取url参数 如何改变当前页面内某个图片的地址?

有没有开源方法能直接获取url的参数值