日期:2014-05-16 浏览次数:20268 次
<script type="text/javascript">
$(document).ready(function () {
$(".two_middle1_li").mouseover(function () {
var str=$(this).attr("id");
if (str == "fzjs") {
$("#heiban_p1").fadeIn(1000);
}
else if (str == "snkjm") {
$("#heiban_p2").fadeIn(1000);
}
else if (str == "zygj") {
$("#heiban_p3").fadeIn(1000);
}
else if (str == "xgsy") {
$("#heiban_p4").fadeIn(1000);
}
else if (str == "zzjg") {
$("#heiban_p5").fadeIn(1000);
}
})
$("li").mouseout(function () {
$("#heiban p").css("display", "none");
});
});
</script>
$("#heiban_p5").stop().fadeIn(1000);