如何使用 clojure/enlive 动态设置表行的属性类?
我使用 enlive 模板引擎创建了一个表。我所做的是创建一个单表行并重复该行直到动态需要的行数。但是,我在更新每行的属性 class
时遇到一些问题。
如何动态地为每个表行设置 class
属性,例如奇数方式?
I have created a table using enlive template engine. what I have done, is create a singe table row and repeated that row up to the no of row needed dynamically. But, I have some problems update the each row's attribute class
.
How can I set the class
attribute for every table row dynamically, say even odd manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
enlive 邮件列表中有一个帖子,其中 Christophe Grand 进行了解释如何做到这一点。
我也有同样的感觉,如果你可以使用nth-child 选择器 它更干净。
There is a thread on the enlive mailing list where Christophe Grand explains how to do this.
I also share the feeling that if you can use nth-child selector it is way cleaner.