Line 183: | Line 183: | ||
<script> | <script> | ||
− | |||
$(document).ready(function () { | $(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> | </script> |
Revision as of 08:13, 3 October 2018