js获取地址栏参数

//获取地址栏参数
    getParam:function(name){
        var search = decodeURIComponent(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;
    },
原文地址:https://www.cnblogs.com/fqh123/p/11556264.html