2

我需要向 button_to 标记添加替代文本。

这是我的按钮代码:

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

我希望在用户将鼠标悬停在按钮上时出现文本。

有什么建议吗?

谢谢

4

1 回答 1

1

知道了:

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

您只需要添加一个标题选项。

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

于 2012-08-03T13:14:01.660 回答