rails,link_to:是否可以在:confirm选项中包含一个链接?

时间:2012-11-16 23:31:29

标签: ruby-on-rails link-to confirm

是否可以在字符串传递中添加指向link_to :confirm问题选项的链接?

类似的东西:

str =  "Please press OK to approve license <http://www.url_to_license.com> before downloading the file"

link_to("Download file1", "http://www.urltofile1.com", :confirm => str")

我尝试了很多东西,但无法在确认对话框中显示一个链接,只显示文字。

如果这是一个微不足道的问题我很抱歉,我是Ruby&amp;的新手。轨。

1 个答案:

答案 0 :(得分:1)

:confirm选项会使用您传入的字符串创建JavaScript警报。

不幸的是,我不认为在JavaScript警报中使用HTML是可能的,因此我认为答案是否定的。

你应该看看一些JQuery插件来解决你的问题。

例如 - Boxy