我正在尝试使用 replace 方法更改散列 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" 解决方案来解决这个问题。