我在浏览器中有一个参数值很少的网址。我想要做的是我想将该参数值更改为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";
});