× 我希望在运行时获取(注意“data-alert”属性): × 我要在 content_t-6ren">
gpt4 book ai didi

ruby-on-rails - 如何在 Rails 3.2 中使用 content_tag 添加附加属性到标签?

转载 作者:数据小太阳 更新时间:2023-10-29 08:39:00 30 4
gpt4 key购买 nike

给定:

<%= content_tag :div, :class => "alert-box alert" do %>
<%= flash[:error] %>
<a href="#" class="close">&times;</a>
<% end %>

我希望在运行时获取(注意“data-alert”属性):

<div data-alert class="alert-box alert">
<!-- flash error output -->
<a href="#" class="close">&times;</a>
</div>

我要在 content_tag 中添加什么才能使其正常工作?

最佳答案

尝试:

<%= content_tag :div, :class => "alert-box alert", :data => {:alert => nil} do %>
<%= flash[:error] %>
<a href="#" class="close">&times;</a>
<% end %>

关于ruby-on-rails - 如何在 Rails 3.2 中使用 content_tag 添加附加属性到标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16271516/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com