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.americancargear.com
有什么建议么?
将 index.js 的第 37 行更改为:
$(this).find('ul').stop(false, true).fadeIn(200);
至:
$(this).find('ul:first').stop(false, true).fadeIn(200);
Product 下拉菜单中有多个 ul,因此所有子项都显示为悬停。相反,您应该只在悬停时显示第一个子 ul。