从addClass脚本中排除链接....需要帮助:-)

时间:2010-09-08 03:12:36

标签: removeclass

我需要在此脚本中排除所选类的链接。任何人都可以告诉我如何排除.logo类的链接?查看主页链接的链接和徽标:link text

$(document).ready(function() {


$('a.panel').click(function () {

    $('a.panel').removeClass('selected');
    $(this).addClass('selected');

    current = $(this);

    $('#wrapperQ').scrollTo($(this).attr('href'), 800);     

    return false;
});

$(window).resize(function () {
    resizePanel();
});

});

1 个答案:

答案 0 :(得分:0)

尝试使用not function。

$('a.panel').not('.logo').click(function () {
  ...
});