Line 248: | Line 248: | ||
</div > | </div > | ||
− | + | <script> | |
− | + | $(document).ready(function () { | |
− | + | $('.menu > ul > li > ul:not(:has(ul))').addClass('normal-sub'); | |
− | + | //导航背景变色+下滑方法 | |
− | + | $(".menu > ul > li").hover(function () { | |
− | + | //$(this).css({"background-color":"#f0f0f0"}); | |
− | + | $(this).children("ul").stop(true, false).slideToggle(300); | |
+ | }); | ||
+ | //背景颜色还原+下拉菜单消失 | ||
+ | $(".menu > ul > li").mouseleave(function () { | ||
+ | //$(this).css({"background-color":"#fff"}); | ||
+ | $(this).children("ul").hide(); | ||
+ | }); | ||
+ | }); | ||
+ | </script> |
Revision as of 08:40, 13 October 2018