jQuery绿色简洁三级下拉菜单代码
下载次数:8
文件大小:2.66KB
所需积分:0
QQ联系购买积分:3331653644(1元=10积分)
/* ------------------------------------------
* IT书包
* 网址:www.itshubao.com
-------------------------------------------- */
$(function(){
var _this1=null;
$('.nav>li').hover(function(){
_this1=$(this);
_this1.find('.second-nav').show();
var _this2=null;
_this1.find('.second-nav').find('li').hover(function(){
_this2=$(this);
_this2.find('.third-nav').show();
_this2.find('.third-nav').hover(function(){
$(this).show();
},function(){
$(this).hide();
});
},function(){
_this2.find('.third-nav').hide();
});
},function(){
_this1.find('.second-nav').hide();
});
});
0 条评论