如何在我将鼠标悬停时使下拉菜单展开

时间:2016-04-28 13:08:16

标签: jquery wordpress drop-down-menu

我在localhost中自定义一个Wordpress主题,我的问题是必须单击下拉菜单才能展开/折叠,这里是一个使用这个主题的网站:http://mor10.com(你可以测试导航菜单看看是什么我在谈论)。  我需要在悬停和聚焦时使下拉菜单展开/折叠,但我真的是一个带jquery的菜鸟,这里是下拉菜单的代码:

// Add menu items with submenus to aria-haspopup="true".
container.find( '.menu-item-has-children' ).attr( 'aria-haspopup', 'true' );
container.find( '.dropdown-toggle' ).click( function( e ) {
        var _this            = $( this ),
            screenReaderSpan = _this.find( '.screen-reader-text' );

        e.preventDefault();
        _this.toggleClass( 'toggled-on' );
        _this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );

        // jscs:disable
        _this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) ===     'false' ? 'true' : 'false' );
        // jscs:enable
        screenReaderSpan.text( screenReaderSpan.text() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand );
    } );
}
initMainNavigation( $( '.main-navigation' ) );

1 个答案:

答案 0 :(得分:0)

如果您检查chrome中的元素,您会看到当您单击下拉列表时,类按钮类添加到按钮类中,因此您可能想在js文件中尝试此片段。

$("button.dropdown-toggle").hover(function(){
        $(this).toggleClass("toggle-on");
    });

并检查它是否有效

希望这有帮助

保重和快乐编码