Rails [求助] 使用 bootstrap 的 nav collapse 时,为什么选中不变为 actice?

MistShi · 2013年02月18日 · 最后由 MistShi 回复于 2013年02月18日 · 6084 次阅读

使用 bootstrap 时,按照官方中的响应式导航条完整 copy。

但是为什么在选择导航栏条目后,该 button 没有变为 active?

需要自己在服务端控制

我用 js 进行了控制,我一开始以为 bootstrap 自带这个功能呢。。。

贴一下,给有需要的同学: $(function(){ $(".nav-collapse").find("li").each(function(){ var a = $(this).find("a:first")[0]; if ($(a).attr("href") === location.pathname){ $(this).addClass("active"); }else{ $(this).removeClass("active"); } }); })

需要 登录 后方可回复, 如果你还没有账号请 注册新账号