我有一些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
我不是这个的粉丝,但你可以尝试做这样的事情
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
我希望这可以帮助你