替换“真”/“假”有图像
我在 Rails 中有一个表,其中许多列都充满了真/假值。
如何进行高性能替换,用小图像替换充满 true
和 false
的表格来表示 true 和 false?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我在 Rails 中有一个表,其中许多列都充满了真/假值。
如何进行高性能替换,用小图像替换充满 true
和 false
的表格来表示 true 和 false?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我通常会向
或
元素添加一个类,然后使用 CSS 选择器为每种情况应用适当的背景图像。
在视图中...
在 CSS 样式表中...
I would usually add a class to a
<span>
or<div>
element, and then use CSS selectors to apply the appropriate background image for each case.In the view...
In the CSS stylesheet...
在您的应用程序帮助程序中有一个类似这样的帮助程序方法
,并且在创建表时,使用参数调用“display_status”方法。
Have a helper method, something like this, in your application helper
And when you are creating the table, call the 'display_status' method with the parameter.
与 Steve Jorgensen 相同的想法,但没有 css
"> ;
the same idea as Steve Jorgensen but without css
<img src="<%= @item.foo? ? "/images/true.png" : "/images/false.png" %>"></img>