0

我有以下脚本在我的导航项上为背景图像精灵设置动画:

$j(function() {
   $j(".menu-item:not(.current-menu-item) .bottom_nav").hover( function () {
      $j(this).animate( {
         backgroundPosition : '0px 35px'}
      , 300); }
   , function () {
      $j(this).animate( {
         backgroundPosition : '0px 0px'}
      , 600); }
   ); 
});

我现在想从悬停脚本中排除第二个类。我尝试以以下形式添加它:

$j(".menu-item:not(.current-menu-item, .current-menu-parent) .bottom_nav").hover( function () {

$j(".menu-item:not('.current-menu-item, .current-menu-parent') .bottom_nav").hover( function () {

但两者都打破了悬停脚本。

4

1 回答 1

2

jQuery .not()/:not 选择器文档-

.not() 方法最终将为您提供比将复杂选择器或变量推入 :not() 选择器过滤器更易读的选择。在大多数情况下,这是一个更好的选择。

$j(".menu-item").not(".current-menu-item,.current-menu-parent").find(".bottom_nav").hover()
于 2012-07-03T16:47:31.090 回答