我正在开发一个需要展开和折叠的JQuery菜单。但是,我有一些问题让子菜单按照我的意愿排列。基本上,我希望子菜单项与顶级菜单项一致。但是,就像现在一样,整个子菜单项是缩进的。我的代码如下所示:
HTML
<ul id="theMenu">
<li><a title="open or close this section" href="#">Info</a>
<ul>
<li><a href="#">Basic</a></li>
<li><a href="#">Advanced</a></li>
</ul>
</li>
<li><a title="open or close this section" href="#">Documents</a>
<ul>
<li><a href="#">Newsletters</a></li>
<li><a href="#">Policies and Procedures</a></li>
<li><a href="#">job Descriptions</a></li>
</ul>
</li>
</ul>
的JavaScript
$(document).ready(function () {
$("#theMenu > li > a").not(":first").find("+ ul").slideUp(1);
$("#theMenu > li > a").click(function () {
$(this).find("+ ul").slideToggle("fast");
});
});
CSS
#theMenu, #theMenu ul { list-style:none; width:15em; }
#theMenu a { background:#F6F6F6; color:#010101;
display:block; font-weight:bold; padding:0.5em 1em; text-decoration:none;
border:1px solid #DFDFDF;
}
#theMenu ul a { background:#F6F6F6; color:#010101;
font-weight:normal; text-decoration:none;
}
#theMenu ul a:hover { background:#F0EBE1; text-decoration:underline; color:#711515; }
如何使子菜单与根菜单的左边缘齐平?
谢谢!
增加:演示here
答案 0 :(得分:0)
#theMenu, #theMenu ul { list-style:none; width:15em; }
on
#theMenu, #theMenu ul { list-style:none; width:15em;margin:0;padding:0; }
答案 1 :(得分:0)
在FF上看起来没用你正在使用的浏览器是什么?