组织门户二级目录显隐
This commit is contained in:
parent
5133338923
commit
d9b0c654aa
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue