组织门户二级目录显隐

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

View File

@ -188,13 +188,13 @@
<script>
$(".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();