在页面加载时更改URL参数

时间:2015-01-29 11:55:00

标签: javascript jquery

我想将网址中的第3个参数更改为动态变量。

EG。如果我的网址为http://example.com/A/B/Fixed_var_C,那么我希望将其更改为http://example.com/A/B/Dynamic_C

如何在页面加载时通过JQuery或javascript实现它?

我尝试了很少的方法,但没有成功。以下是其中一种方法:

window.history.pushState("object or string", "Title", "/new-url");

2 个答案:

答案 0 :(得分:2)

url = "http://example.com/A/B/Fixed_var_C";
url = url.substr(0,url.lastIndexOf('/'))+"/Dynamic_C";
alert(url);

<强> Demo

答案 1 :(得分:0)

尝试以下功能:

function UpdateQueryString(key, value, url) {
    if (!url) url = window.location.href;
    var re = new RegExp("([?&])" + key + "=.*?(&|#|$)(.*)", "gi"),
        hash;

    if (re.test(url)) {
        if (typeof value !== 'undefined' && value !== null)
            return url.replace(re, '$1' + key + "=" + value + '$2$3');
        else {
            hash = url.split('#');
            url = hash[0].replace(re, '$1$3').replace(/(&|\?)$/, '');
            if (typeof hash[1] !== 'undefined' && hash[1] !== null) 
                url += '#' + hash[1];
            return url;
        }
    }
    else {
        if (typeof value !== 'undefined' && value !== null) {
            var separator = url.indexOf('?') !== -1 ? '&' : '?';
            hash = url.split('#');
            url = hash[0] + separator + key + '=' + value;
            if (typeof hash[1] !== 'undefined' && hash[1] !== null) 
                url += '#' + hash[1];
            return url;
        }
        else
            return url;
    }
}