代码如下,如何复用代码来实现二级菜单淡入淡出的效果?求解=。=
$li_1.hover(function () {//二级菜单效果
$li_1_content.stop(true,true).fadeIn(0);
}, function () {
$li_1_content.fadeOut(500, function () {
//$li_1_content.css("display", "none");
});
});
$li_2.hover(function () {//二级菜单效果
$li_2_content.stop(true,true).fadeIn(0);
}, function () {
$li_2_content.fadeOut(500, function () {
//$li_2_content.css("display", "none");
});
});
$li_3.hover(function () {//二级菜单效果
$li_3_content.stop(true,true).fadeIn(0);
}, function () {
$li_3_content.fadeOut(500, function () {
$li_3_content.css("display", "none");
});
});
MarlboroKay