作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在检索以下模板中的位置列表
<template name="explore">
<h2>Explore Places</h2>
<ul>
{{#each locations}}
<h4><a data-toggle="collapse" data-target="#info">{{name}}</a></h4>
<p id="info" class="collapse">{{{information}}}</p>
{{/each}}
</ul>
</template>
每当单击一个位置时,我想通过使用 Bootstrap 折叠来显示其相应的隐藏信息。但单击列表中的任何链接始终会显示列表中第一项的信息。
最佳答案
解决了,我为每个可折叠标签使用相同的“id”:
<template name="explore">
<h2>Explore Places</h2>
<ul>
{{#each locations}}
<h4><button class="btn btn-mini" data-toggle="collapse" data-target="#{{name}}">{{name}}</button></h4>
<li>
<p id="{{name}}" class="collapse">{{{information}}}</p>
</li>
{{/each}}
</ul>
</template>
关于javascript - Bootstrap 崩溃不适用于 Meteor.js 的每个循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33826219/
我是一名优秀的程序员,十分优秀!