二级导航 js
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二级导航 js相关的知识,希望对你有一定的参考价值。
$(function(){ $(".classify dl dd").mouseover(function(){ $(this).addClass("on"); $(this).children("ul").show(); }) }) // 关键二:正确使用jQuey的语法完成行为。 $(function(){ $(".classify dl dd") .mouseout(function(){ $(this).removeClass(‘on‘); $(this).children("ul").hide(); }) })
以上是关于二级导航 js的主要内容,如果未能解决你的问题,请参考以下文章