Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请我有下拉菜单的问题。当我在包含子项的菜单中的项目上时,它们会显示给我,但是当我将鼠标移到它们上时,项目的背景消失了,我不知道如何解决它。这是网站:http ://www.poridsiweb.cz/vojta/
谢谢您的帮助。
试试这个代码:
$("ul#nav").children('li').mouseenter(function(){ $(this).find('a:first').stop(true,true).animate({backgroundPosition:"(0 -5px)"}, 200); }).mouseleave(function(){ $(this).find('a:first').animate({backgroundPosition:"(0 -150px)"}, 200); });
请注意,此代码未经测试。