<li class="active"> <div class="PartR"> </div></li>
<script type="text/javascript">
$(function (){
//显示隐藏
var color ="";
$(".active").mouseover(function (){//鼠标移入
color = $(this).css("background-color");//获取原始颜色
$(this).css("background-color","#5FB878")
$(".PartR").show();//显示
}).mouseout(function (){//鼠标移出
$(this).css("background-color",color)
$(".PartR").hide();//隐藏
});
});
</script>