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://jsfiddle.net/bombula/TKwNS/。
写了这段代码希望对你有帮助
$(function () { $('.dropdown_menu').hover( function () { $('ul#submenu').slideDown("1000"); }); $('.dropdown_menu').mouseleave( function () { $('ul#submenu').stop().slideUp("1000"); }); });