Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
整个设置在这里的 jsfiddle 页面中
http://jsfiddle.net/DyJzg/10/
问题是,div 块似乎与浮动导航栏冲突,因此 JavaScript 下拉菜单不再起作用。
这是这个旧问题的后续问题:
滚动时如何使此导航栏浮动在顶部?
你只需要添加z-index到你的nav,像这样:
z-index
nav
nav {position:fixed;top:0;width:100%;z-index:10}
或者,作为一个选项,您可以<nav>在下面<div id="content">的 html 代码中找到。
<nav>
<div id="content">