我有以下脚本在我的导航项上为背景图像精灵设置动画:
$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 () {
但两者都打破了悬停脚本。