jQuery活动菜单问题

时间:2009-12-14 11:26:29

标签: jquery

我试图实现这个jQuery活动菜单代码:http://docs.jquery.com/Tutorials:Auto-Selecting_Navigation

 $(function(){
   var path = location.pathname.substring(1);
   if ( path )
     $('#sidebar_content a[@href$="' + path + '"]').attr('class', 'selected');
 });

但它似乎没有添加类:http://www.thecreativealliance.org/gallery/advertising-and-marketing?CategoryID=39196&cat=Promotions%20%26%20publicity

有什么想法吗?

杰克

1 个答案:

答案 0 :(得分:0)

尝试.addClass('selected')documentation)并更改查询:#sidebar_content a[href="' + ...(不需要@和$)。

强烈建议使用

JQuery API doc,以便记住可用的方法。