以下是我的表单的haml:
34 #new_comment
35 %strong Add Comment:
36 - semantic_form_for 'comment', :url => add_comment_url(@review), :remote => true do |f|
37
38 = f.text_area :comment, :label => :comment, :cols => 60,:rows => 5, :input_html => {:rows => 5, :cols => 30}
39 = f.submit
我提交后,我在.js.erb文件中有jquery javascript,但我无法清除它。这就是我所拥有的:
7 /* Reset the comment form */
8 $("#comment_comment").reset();
它不是在做什么?
答案 0 :(得分:2)
要重置该文本区域:
$('#comment_comment').val('');