我需要在此脚本中排除所选类的链接。任何人都可以告诉我如何排除.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();
});
});
答案 0 :(得分:0)
尝试使用not function。
$('a.panel').not('.logo').click(function () {
...
});