最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
快速实现jQuery多级菜单效果
时间:2022-06-25 17:18:34 编辑:袖梨 来源:一聚教程网
我这个代码用的是jquery1.9.1,ie8以下的兼容有待考虑,主要是代码的简介性,write less,do more.
代码如下 | 复制代码 |
.top-nav { font-size: 12px; font-weight: bold; list-style: none; } .top-nav li { float: left; list-style: none; margin-right: 1px; } .top-nav li a { line-height: 20px; text-decoration: none; background: #DDDDDD; color: #666666; display: block; width: 80px; text-align: center; } .top-nav li a:hover { background: #900; color: #FFF; } .top-nav ul { list-style: none; display: none; width: 80px; padding: 0; position: relative; } .top-nav li ul li ul { position: absolute; top: 0; left: 80px; }
$(function(){ $(".top-nav li").hover(function(){ $(this).has("ul").children("ul").fadeIn(); },function(){ $(this).has("ul").children("ul").hide(); }); }) |