鼠标移上去显示二级菜单移出去隐藏

$('dl').hide();
$(function () {
$("li.mainmenu").mouseover(function () {
$(this).children("dl").show();
})
})

$(function () {
$("li.mainmenu").mouseout(function () {
$(this).children("dl").hide();
})
})

原文地址:https://www.cnblogs.com/mmit/p/14119150.html