jQuery类更改对Href的更改?

时间:2018-11-28 22:21:20

标签: javascript jquery css

我伤脑筋了,希望其他人能在这里解决。

我的客户希望菜单淡出,而当您进入页面时,其他菜单会淡入。 https://67livingstonst.com/#home然后转到https://67livingstonst.com/#find-story-67-livingston-2

我似乎无法弄清他们正在使用的事件...我更擅长Jquery,因此,如果有人对他们正在使用哪个事件来触发菜单褪色有任何反馈,那将是惊人的...

1 个答案:

答案 0 :(得分:0)

这里是当href更改以匹配特定幻灯片的ID时如何更改类的示例。我希望这会有所帮助!

$(window).on("hashchange",function(e){
    if(window.location.hash == "#find-story-67-livingston-2"){
        $("#my-menu").addClass("show");
   } else {
       $("#my-menu").removeClass("show");
   }
})
相关问题