红宝石“第一”辅助方法?
我有以下文件member.html.erb:
<ul class="members-list">
<%@members.each do |member|%>
<li class="member-item">
<%=member.name%>
</li>
<%end%>
</ul>
我想将“第一个”类添加到将生成的第一个li(仅第一个),所以它看起来像这样:
<ul>
<li class="member-item first">john</li>
<li class="member-item">chris</li>
</ul>
有什么想法吗?
i have the following file member.html.erb:
<ul class="members-list">
<%@members.each do |member|%>
<li class="member-item">
<%=member.name%>
</li>
<%end%>
</ul>
i want to add the "first" class to the first li that will be generated (just to the first), so it would look like this:
<ul>
<li class="member-item first">john</li>
<li class="member-item">chris</li>
</ul>
any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果纯粹是为了样式,你也可以使用 CSS 来实现这一点。如果你在 ul 上有一个 ID 或类,那么你可以在 CSS 中编写
,对于其余的 li 标签
如果你想添加类,你可以例如
You could acheive this using CSS aswell if its purely for the styling. If you either has a ID or class on the ul then you could in CSS write
and for the rest of the li-tags
If you want the class to be added you could e.g
与 Andreas/Heikki 的答案类似但更简洁的方法:
Similar, but more terse, approach to Andreas/Heikki's answer: