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.
我正在尝试将菜单从我的 wordpress安装迁移到非 wordpress 站点。
我剥离了 css 和 html,并将其全部放在jsfiddle中。
我跑了2个问题:
1)由于某种原因,第一个菜单项向右移动,我花了整个晚上试图弄清楚。
2) 下拉菜单未显示:(
我试图在这里发布代码,但它太大并且不断破坏格式......
看看这个小提琴:当我查看页面源代码时,我已经在你的网站上添加了 JQuery 的下拉菜单。
http://jsfiddle.net/F7SjC/1/
$("#accessm ul li").hover( function () { $(this).children('ul').slideDown('fast'); }, function () { $(this).children('ul').slideUp('fast'); } );
你需要 JS 来显示下拉功能。我不确定您的 1) 菜单项转换是什么意思。