注册 登录 充值会员 退出
网站、APP、小程序等定制开发,联系QQ 1206995177 毕业设计 java源码 PHP源码
充值

jQuery招聘网站左侧导航分类菜单代码

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2022-09-04
jQuery招聘网站左侧导航分类菜单代码
jQuery招聘网站左侧导航分类菜单代码是一款适用于分类比较多的网站分类导航插件,鼠标悬停显示二级、三级子分类菜单。


js代码

<script type="text/javascript">

	$(function(){
		$('.aui-content-main .aui-content-menu').hover(function(){

			$(this).addClass('active').find('s').hide();

			$(this).find('.aui-content-menu-dow').show();

		},function(){

			$(this).removeClass('active').find('s').show();

			$(this).find('.aui-content-menu-dow').hide();

		});

	});

</script>