组织门户二级目录显隐

This commit is contained in:
huang 2016-05-06 17:14:53 +08:00
parent 5133338923
commit d9b0c654aa
1 changed files with 2 additions and 2 deletions

View File

@ -33,13 +33,13 @@
<script>
$(document).ready(function(){
$(".nav-element").mouseover(function(){
$(this).next().show();
$(this).next(".sn-grey-opacity").show();
});
$(".sn-grey-opacity").mouseover(function(){
$(this).show();
});
$(".nav-element").mouseout(function(){
$(this).next().hide();
$(this).next(".sn-grey-opacity").hide();
});
$(".sn-grey-opacity").mouseout(function(){
$(this).hide();