我是一个初学者并且已经彻底搜索过,没有找到解决这个问题的方法。
我编写了一个代码,当您单击链接时,css 样式会发生变化,如下所示:
function spHome(){
document.getElementById("btnHome2").style.background = "url(../images/btn_navHoverArrow.png) no-repeat center bottom";
document.getElementById("btnAccount").style.background = "0";
}
function spAccount(){
document.getElementById("btnHome2").style.background = "0";
document.getElementById("btnAccount").style.background = "url(../images/btn_navHoverArrow.png) no-repeat center bottom";
}
这段代码工作得很好。对我来说,问题是当我刷新页面时,点击状态不再活跃。是否有代码可以仅在用户位于页面的某个锚点时才允许该功能保持活动状态。例如,如果我们有一个名为index.html#home的锚点位置,则主页按钮将处于活动状态,当单击index.html#account时,即使在页面刷新后,帐户按钮也会保持单击状态。
下面的示例似乎不适用于 jsfiddle,但适用于所有浏览器:http: //jsfiddle.net/JoshuaWaheed/HZLVt/3/
有没有办法做到这一点?