Ruby取消是按钮而不是链接

问题描述 投票:0回答:1

我有一些ruby代码来创建一个基本的博客。

我想要允许用户在更新密码时更新或取消的按钮。这是一个'应用助手'

我希望这些作为按钮,但不确定如何使“取消”按钮返回。它目前只是java脚本和文本,但更新用户是一个按钮。

代码如下

module ApplicationHelper


# Creates a submit button with the given name with a cancel link
  # Accepts two arguments: Form object and the cancel link name
  def submit_or_cancel(form, name='Cancel')
    form.submit + " or " +
      link_to(name, 'javascript:history.go(-1);', :class => 'cancel')
  end
end
ruby-on-rails-3 button cancel-button
1个回答
0
投票

我不是这个的粉丝,但你可以尝试做这样的事情

module ApplicationHelper
# Creates a submit button with the given name with a cancel link
  # Accepts two arguments: Form object and the cancel link name
  def submit_or_cancel(form, name='Cancel')
    form.submit + " or " +
      link_to(name, '#',:onclick => 'history.go(-1);', :class => 'cancel')
  end
end

我希望这可以帮助你

© www.soinside.com 2019 - 2024. All rights reserved.