我正在构建一个大型菜单,我希望能够通过悬停(使用鼠标)和焦点(例如通过键盘跳至菜单)来触发菜单。

这是我目前正在做的:

$(".megaMenu-trigger").focus(function (){$(this).hover()});
$(".megaMenu-trigger").hover(function(){
    // do the stuff
});


这可行,但是我想知道这是否是同时处理键盘和鼠标交互的理想方法。

最佳答案

您可以使用bind方法将多个事件绑定到一个操作,即

$('.megaMenu-trigger').bind("mouseenter focus mouseleave",
        function(event) { console.log(event.type); });

09-30 11:52