我是 jQuery 新手,我想弄清楚如何为我要创建的导航栏选择多个元素。我想让它检查用户的鼠标是在导航栏中的项目上还是在下拉菜单上(否则下拉菜单会消失)。我尝试使用:
$('#nav_item_1').mouseenter(function(){
//make the drop down menu visible and change nav_item background here
});
`
$('#nav_item_1,#dropdown').mouseleave({
//revert everything back to normal
});
但是当我尝试将鼠标从导航栏中的项目移动到下拉菜单时,它会将一切恢复正常。