我有一个菜单和 jquery 代码,它在悬停时使其背景图像不同。
$('#menu a').hover(function() {
$(this).css( 'background', 'url(images/slider_bg_hover.png) repeat-x' );
},function(){
$(this).css( 'background', 'url(images/slider_bg.png) repeat-x' );
});
它工作正常,但现在我想突出显示单击的菜单:
$('#menu a').click(function() {
$(this).css( 'background', 'url(images/slider_bg_hover.png) repeat-x' );
});
它也可以正常工作,但是单击后,我将鼠标指针从菜单区域和悬停动作调用中移动!所以菜单的那部分没有突出显示!
你能给我什么建议?