bug#2920:课程通知:对课程通知进行评论时,不输入字符,点击ENTER键也可以保存评论
This commit is contained in:
parent
046a593f42
commit
ffd254b7bb
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue