Jquery将Wordpress子菜单转换为下拉菜单
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Jquery将Wordpress子菜单转换为下拉菜单相关的知识,希望对你有一定的参考价值。
When applied to a page, this script converts any sub-menus created in the Wordpress menu editor into drop-down menus without having to specify each menu item individually. Fades in sub-menu of selected list item quickly, then fades out when leaving list item or sub-menu. See url above.Only decided to post this because I couldn't find anything similar and was sick of working with inefficient menu creator plugins in WP.
//the container wrapping the menu var menuContainer = '#mainnavigation'; $(document).ready(function() { //hover display for main menu items $(menuContainer+' ul.menu li').hover( //on enter function() { selectedItem = this.id; $(menuContainer+' ul li#'+selectedItem+' ul.sub-menu').fadeIn('fast'); }, //on leave function() { selectedItem = this.id; $(menuContainer+' ul li#'+selectedItem+' ul.sub-menu').fadeOut('fast'); } ); });
以上是关于Jquery将Wordpress子菜单转换为下拉菜单的主要内容,如果未能解决你的问题,请参考以下文章