How can I replace a window's URL hash with another response?
问题 I am trying to change a hashed URL (document.location.hash) with the replace method, but it doesn't work. $(function(){ var anchor = document.location.hash; //this returns me a string value like '#categories' $('span').click(function(){ $(window).attr('url').replace(anchor,'#food'); //try to change current url.hash '#categories' //with another string, I stucked here. }); }); I dont want to change/refresh page, I just want to replace URL without any responses. Note: I don't want to solve this