最佳答案
我试图用替换方法更改散列 URL (document.location.hash) ,但是它不起作用。
$(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.
});
});
我不想更改/刷新页面,我只想替换没有任何响应的 URL。
注意: 我不想用 href = “ # food”解决这个问题。