我希望在表单标签中包含这样的链接:

<%= form.check_box 'eula' %>
<%= form.label 'eula', "I agree to the <a href='#' id='eula-link'>EULA</a>", class: 'label-checkbox' %>


Rails可能会写出HTML,但是我将如何实现呢?单击EULA将打开一个JS弹出窗口。我正在考虑以某种方式将link_to嵌入其中?

最佳答案

html_safe与括号一起使用将呈现html,如下所示:

<%= f.input :eula, :as => :boolean, label: ("I agree to the #{link_to 'Terms of Service', terms_path}.").html_safe %>

关于ruby-on-rails - 在表单标签中包含链接?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11075243/

10-13 09:42