最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - JQuery add class on current item - Stack Overflow

programmeradmin2浏览0评论

I have this method that changes an larger image source on click.

I need to add a 'current' class on the selected. I have no problem adding this class,but I need it to remove the class on the other, previous, selected item.

This is the code I'm using at the moment:

$(document).ready(function() {
    $("ul.timgs li a").click(function(e) {
        e.preventDefault();
        var path = $(this).attr("href");
        $("div.tour-image img").attr({"src": path});
    });
});

Thanks :-)

I have this method that changes an larger image source on click.

I need to add a 'current' class on the selected. I have no problem adding this class,but I need it to remove the class on the other, previous, selected item.

This is the code I'm using at the moment:

$(document).ready(function() {
    $("ul.timgs li a").click(function(e) {
        e.preventDefault();
        var path = $(this).attr("href");
        $("div.tour-image img").attr({"src": path});
    });
});

Thanks :-)

Share Improve this question asked May 25, 2009 at 11:41 janhartmannjanhartmann 15k17 gold badges87 silver badges140 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 9

This should work:

$("ul.timgs li a").click(function(e) {
  $(".current").removeClass("current");
  $(this).addClass("current");
  ...
}

Before you add the "current" class to the new current item, remove it from the previous current item:

$(".current").removeClass("current");
发布评论

评论列表(0)

  1. 暂无评论