鉴于此网站:link text
如何找到一个元素并删除任何类=选中并将其添加到正确的链接? 这样,当点击时会看到历史,模型等链接。
答案 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");
});