我有一个允许用户发表评论的表格。这是我的提交操作:
<%= semantic_form_for([@project, step, step.comment_threads.build]) do |f| %>
<%= f.text_area :body %>
<%= f.actions do %>
<%= f.action :submit, :label=>"Comment", :button_html => {:class=> "btn btn-small btn-primary commentSubmit", :disable_with => "Comment"} %>
<% end %>
<% end %>
如果用户尝试提交空评论,我会禁用表单提交。但是在用户在评论框中输入文本后,我无法重新启用它。(当我单击评论按钮时,表单不会被提交)。这是我的 JavaScript:
$('.commentSubmit').click(function(){
var comment = $(this).parents('form').children('.field').find('textarea').val();
console.log('comment: ' + comment);
if(comment.length == 0){
alert('Cannot post an empty comment');
$(this).parents('form').submit(false);
}else{
console.log('submitting form');
$(this).parents('form').submit();
}
});