如何使用HAML清除表单?

时间:2014-07-28 14:05:59

标签: javascript haml

我有一个带提交按钮的haml表单。这是代码:

= form_for Comment.new(commentable: resource), url: polymorphic_path([resource, :comments]), remote: true, method: :post, data: { type: "text html" }, html: { rel: "nofocus", class: "new-comment" } do |f|
  .media
    = f.text_area :body, class: 'input-block-level resizable'
        %button.btn.btn-success(type="submit") Post Comment

是否存在HAML用于清除表单的某种语法,或者是否存在可用于使用js清除表单的事件?解决这个问题的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

我不了解HAML,但在HTML中你可以使用

<button type="reset">Click me</button>

<input type="reset" value="Click me" />

参考文献