jquery手风琴不同宽度
我想使用 jquery 在此设置中设置手风琴:
| Header 1 |
|Header 2 | Header 3 |
| Header 4 |
每个都是一个手风琴项目。这可能吗?如何实现?我还想如果标头 2 打开则标头 3 打开。
TA
I want to set accordion in this setup using jquery:
| Header 1 |
|Header 2 | Header 3 |
| Header 4 |
Each one is an accordion item. Is it possible and how? I want also if header 2 is open to get header 3 opened.
TA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样? http://jsfiddle.net/CppLB/1/
HTML:
CSS:
JS:
Like this? http://jsfiddle.net/CppLB/1/
HTML:
CSS:
JS:
使用这种格式:
其中 header 2 header 3 部分只是一个 header 标签中的两位文本(或者您可以在 header 标签中使用表格),而手风琴的该部分的 div 包含表格或 css 格式使您描述的效果发生...如果您希望每个标题看起来独立(带有圆角),请使用 css3。
Use this sort of format:
where the header 2 header 3 part is just two bits of text in one header tag (or you can use tables in the header tag) and the div for that part of the accordion contains a table or css formatting to make the effect you described happen... if you want each headiing to look individual (with rounded corners) use css3.