作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Bootstrap 和 Ember.js 得到了一个无序列表。每个列表项都是一个显示新帖子的链接,每当您单击该链接时,Ember 都会添加类 active
默认情况下。我正在使用 Bootstrap nav-pills
当类是 active
时变成蓝色.但是,Ember 将链接设为 active
而我想让它成为整个 <li>
活跃。
这是我的模板:
<ul class="nav nav-pills nav-stacked">
{{#each post in controller}}
<li class="list-group-item">
{{#link-to 'post' post}}
{{post.title}}
{{/link-to}}
</li>
{{/each}}
</ul>
当您单击链接时,<li>
看起来像这样:
<li class="list-group-item">
<a id="ember360" class="ember-view active" href="#/posts/1">
A great post
</a>
</li>
我知道用 jQuery 添加这个功能相当简单,但是有没有办法制作 <li>
活跃而不是 <a>
直接使用 Ember 或 Handlebars?我试着把 {{link-to}}
<li>
周围这并没有起到作用。
最佳答案
您可以更改 link-to
生成的标记为 <li>
使用 tagName="li"
选项。并保留 <a>
标记以保持 Bootstrap 样式:
<ul class="nav nav-pills nav-stacked">
{{#each post in controller}}
{{#link-to 'post' post tagName="li" class="list-group-item" }}
<a href="#">{{post.title}}</a>
{{/link-to}}
{{/each}}
</ul>
关于javascript - 制作 <li> 元素 'active' 而不是 <a> 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20013342/
我是一名优秀的程序员,十分优秀!