twitter-bootstrap 保持当前导航链接为“活动”

示例

// 将活动类别添加到活动导航链接
$(document).ready(function () {
    $('ul.nav.navbar-nav').find('a[href="' +location.pathname+ '"]')
        .closest('li').addClass('active');
});