bug#2920:课程通知:对课程通知进行评论时,不输入字符,点击ENTER键也可以保存评论

This commit is contained in:
yutao 2015-06-26 09:16:37 +08:00
parent 046a593f42
commit ffd254b7bb
1 changed files with 12 additions and 0 deletions

View File

@ -3,3 +3,15 @@
<% elsif @course %>
<%= render :partial => 'course_show', locals: {course: @course} %>
<% end %>
<script type="text/javascript">
$(function(){
$("#add_comment_form").submit(function(){
if($("#comment").val() == ''){
alert('请输入评论内容');
return false;
}
$(this)[0].submit();
//return true;
});
})
</script>