JQuery:激活标签

时间:2010-09-25 21:32:47

标签: javascript jquery ajax

鉴于此网站:link text

如何找到一个元素并删除任何类=选中并将其添加到正确的链接? 这样,当点击时会看到历史,模型等链接。

2 个答案:

答案 0 :(得分:1)

以下代码应该可以解决您的问题..

// when clicking a link inside the sub-navigation list
$('#sub-navigation a').click(function(){ 
    // first remove the selected class from the active one
    $('#sub-navigation li.selected').removeClass('selected');
    // then find the parent li of the clicked element and add the selected class
    $(this).parents('li').addClass('selected');
});

(它在您的示例页面上进行测试,并按预期工作..)

答案 1 :(得分:0)

$("a").click(function(e) {
$("a.selected").removeClass("selected");
$(this).addClass("selected");
});