开发者

Drop-Down Menu with jQuery and css

why slideDown() and slideUp() does not work true on my menu?

They are 开发者_StackOverflowrepeated several times with mouseover().

see you: jsfiddle-my codes


You are hiding the ul:

#nav ul {
    display: none;

But you want to slide in the li inside the ul:

$('#nav li ul li').slideDown();

Therefore,

$('#nav li ul').slideDown();

works fine.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜