js获取替换url参数

别说谁变了你拦得住时间么 提交于 2020-02-21 18:53:16
function UpdateUrlParam(name, val) {
        var thisURL = document.location.href;
        if (thisURL.indexOf(name+'=') > 0) {
            var v = getUrlParam(name);
            if (v != null) {
                thisURL = thisURL.replace(name + '=' + v, name + '=' + val);
            }
            else {
                thisURL = thisURL.replace(name + '=', name + '=' + val);
            }
            
        }
        else {
            if (thisURL.indexOf("?") > 0) {
                thisURL = thisURL + "&" + name + "=" + val;
            }
            else {
                thisURL = thisURL + "?" + name + "=" + val;
            }
        }
        location.href = thisURL;

    };

    function getUrlParam(name) {
        var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); 
        var r = window.location.search.substr(1).match(reg); 
        if (r != null) return unescape(r[2]); return null;
    }

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!