隐藏除所选列表选项之外的列表
我需要一些有关嵌套列表的帮助,我想要做的是显示列表选项之一并隐藏列表的其余部分,我看到的一个很好的例子是在 filesonic.com 语言选择器或 netlog 状态更改中标头。
<ul class="links">
<li class="us">United States</li>
<li class="canada">Canada</li>
<li class="france">France</li>
<li class="china">China</li>
<li class="englande">England</li>
美国是默认设置,但当有人单击法国时,列表的其余部分将隐藏并显示。
提前致谢。
I need some help with a nested list, what I want to do is to show one of the list options and hide the rest of the list, a great example that I saw was in the filesonic.com languages selector or netlog status change in the header.
<ul class="links">
<li class="us">United States</li>
<li class="canada">Canada</li>
<li class="france">France</li>
<li class="china">China</li>
<li class="englande">England</li>
United States is the default but when someone click on France, the rest of the list will hide and show will show.
thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
像这样的东西就可以解决问题:
这是一个有效的 JSBIN 示例: http://jsbin.com/onile4
希望这有帮助!
Something like this will do the trick:
Here is a working JSBIN example: http://jsbin.com/onile4
Hope this helps!
如果选择“我们”,您可以:
If 'us' was selected, you could:
你可以使用类似的东西:
加上CSS:
JS Fiddle demo。
You could use something like:
coupled with the CSS:
JS Fiddle demo.
带有注释的快速脏样本(您可以根据您的需要即兴创作):
工作示例@ http://jsfiddle.net /dCZpx/
A quick n dirty sample with comments(you can improvize it based on your needs):
Working example @ http://jsfiddle.net/dCZpx/