我有一个带提交按钮的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
清除表单的事件?解决这个问题的最佳方法是什么?
答案 0 :(得分:0)
我不了解HAML,但在HTML中你可以使用
<button type="reset">Click me</button>
或
<input type="reset" value="Click me" />
参考文献