希望有人能给我一些提示!
我尝试构建一个下拉过滤器 - 如果选择了过滤器中的一个项目,它应该在“过滤器”-ToggleButton 旁边可见 - 就像关闭状态一样。
但是,如果我将鼠标悬停在打开/关闭链接上,“选定项目”会跳到底部——我知道为什么但我该如何防止这种情况——“选定项目”如何保持在过滤器按钮旁边?
JSBin - 示例:http:
//jsbin.com/lucayaqeno/
<section class="filter dropdown">
<nav class="container">
<ul>
<li>
<a href="#" class="toggle" data-dropdown="dropdown1">Filter >
<span class="icon-chevron-right"><!-- --></span></a>
<form enctype="multipart/form-data" id="" method="post" action="" class="">
<div class="col-sm-6">
<h3>Channels</h3>
<ul class="row" role="menu">
<li>
<input type="checkbox" value="1" class="checkbox-widget list-field" name="channel:list" id="channel-1">
<label for="channel-1"><span class="label">Channel 1</span></label>
</li>
<li>
<input type="checkbox" value="2" class="checkbox-widget list-field" name="channel:list" id="channel-2">
<label for="channel-2"><span class="label">Channel 2</span></label>
</li>
<li>
<input type="checkbox" value="3" class="checkbox-widget list-field" name="channel:list" id="channel-3">
<label for="channel-3"><span class="label">Channel 3</span></label>
</li>
</ul>
</div>
</form>
</li>
<li>
<a href="">selected Filter</a>
</li>
<li>
<a href="">selected Filter</a>
</li>
</ul>
</nav>
</section>
<p>this content should be always visible - move/jump down</p>
如果有人对标记有更好的想法
谢谢你的帮助!