jQuery 下拉菜单问题
我的下拉菜单有一些问题。代码在这里: http://jsfiddle.net/xY2p6/1/
一些简单的东西我只是没有得到,但如您所见,它无法正常运行。我不确定如何将下拉菜单的隐藏链接到用户将鼠标悬停在菜单链接(而不是实际的下拉菜单)上时。
有什么想法吗?
Having some issues with my dropdown menu. Code here:
http://jsfiddle.net/xY2p6/1/
Something simple I'm just not getting, but as you can see it's not functioning correctly. I'm not sure how to link the hiding of the dropdown to when the user hovers off of the menu link, rather than the actual dropdown.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于您的菜单位于同一个
内,您可以直接将悬停附加到它,如下所示:
您可以在这里尝试一下,或者使用 < 更简单code>.slideToggle(),如下所示:
您可以给它一个在这里试试。
Since your menu is inside the same
<li>
you can just attach the hover to it directly, like this:You can give it a try here, or even simpler with
.slideToggle()
, like this:You can give it a try here.
你的 javascript 有点混乱。
在这里:http://jsfiddle.net/xY2p6/4/
Your javascript is slighty messed up.
here you go: http://jsfiddle.net/xY2p6/4/