rails button_to --- alt text

时间:2012-08-03 13:08:22

标签: ruby-on-rails

我需要在button_to标记中添加替换文字。

这是我的按钮代码:

 <%= button_to 'Reject' , reject_paper_path(paper), :confirm => 'Are you sure you want to reject this paper?' %>

我希望当用户将鼠标移到按钮上时会显示一个文本。

有什么建议吗?

谢谢

1 个答案:

答案 0 :(得分:1)

知道了:

<%= button_to 'Reject' , reject_paper_path(paper), :title=> "title text", :confirm => 'Are you sure you want to reject this paper?' %>

您只需添加标题选项。

希望它对其他人有所帮助。