如何更改浏览器

时间:2018-01-22 09:06:16

标签: javascript jquery url-rewriting

我在浏览器中有一个参数值很少的网址。我想要做的是我想将该参数值更改为true并追加到网址栏。

例如我有url:http://localhost:8080/movie/genre?genereId=61491607&saved=false并且我有保存按钮,当我点击保存按钮时,我应该将当前网址参数&saved=false更改为&saved=true

怎么做?

这是我试过的

url:http://localhost:8080/movie/genre?genereId=61491607&saved=false

<button class="save">save</button>

$('.save').click(function(){
    var defaultURL = window.location.href;
    //taking current url and changing the parameter value 
    location.hash = "saved=abc";
});

0 个答案:

没有答案