12345678910111213141516171819202122232425262728293031 |
- $(function(){
- nav();
- })
- function nav(){
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- $(".nav>ul>li").hover(function(){
- $(this).find(".li_ul").stop(true,true).slideDown("slow");
- stop();
- },function(){
- $(this).find(".li_ul").slideUp("slow");
- })
- }
|