jQuery下来菜单,鼠标移动到下拉菜单就会消失的解决方法

给MORE文件添加.hover()后给下拉菜单也加上.hover()即可。

$(function() {
	$("#navMore").hover(function() {
		$(".top_header__more_dropdown").show();
	});
	$("#top_header__more_dropdown").hover(function() {
		$(this).show();
	}, function() {
		$(this).hide();
	})
});

你可能感兴趣的:(jQuery)