How can I generate a unique dom id for a html tag from model

你离开我真会死。 提交于 2019-12-05 07:22:50

You can use

dom_id(item)

Which is an ActiveRecord method for generating DOM IDs.

A good practice as well is to use HTML5 data attributes:

<span data-item-id="<%= item.id %>">
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!