突出显示指向当前页面所有链接

Avatar of Chris Coyier
Chris Coyier
$(function(){
       $("a").each(function(){
               if ($(this).attr("href") == window.location.pathname){
                       $(this).addClass("selected");
               }
       });
});

此函数将向指向当前页面的任何链接(即使是相对链接)添加“selected”类。