我有下拉菜单。在顶级项目中,鼠标悬停时将背景图像(胡萝卜指示器)应用于 href 标记。当光标位于子菜单项上时,我想在父 li href 项上保留或重置相同的背景图像。我是jQuery的新手,请帮忙!
我厌倦了跟随,但显然不知道我在做什么
$('ul.sub-menu').parent('li a').hover(
function() {
$(this).css('background-image','/wp-content/themes/wp-crumblemagazine/images /bg/carrot.gif');
}, function() {
$(this).css('background-image','none');
});
});
});
这是页面的网址