jQuery导航条三级下拉菜单代码

jQuery导航条三级下拉菜单代码-精品资源网
jQuery导航条三级下拉菜单代码
此内容为免费资源,请登录后查看
0
免费资源

jQuery导航条三级下拉菜单代码

jQuery导航条三级下拉菜单代码是一款非常简洁实用的网站导航菜单,绿色下拉菜单导航代码。

js代码

<script type=\"text/javascript\" src=\"js/jquery.min.js\"></script>
<script type=\"text/javascript\">
	$(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();
		});
	});
</script>

© 版权声明
THE END
点赞0 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容