diff --git a/app/views/users/_homework_post_notice.html.erb b/app/views/users/_homework_post_notice.html.erb
new file mode 100644
index 000000000..a9b153854
--- /dev/null
+++ b/app/views/users/_homework_post_notice.html.erb
@@ -0,0 +1,12 @@
+
+
+
+ 题目已发送到目标课程的作业列表,但需要您设置发布和截止时间,以激活相应作业,谢谢!
+
+
+
+
\ No newline at end of file
diff --git a/app/views/users/send_homework_to_course.js.erb b/app/views/users/send_homework_to_course.js.erb
index 491156876..e4e8e84ab 100644
--- a/app/views/users/send_homework_to_course.js.erb
+++ b/app/views/users/send_homework_to_course.js.erb
@@ -1 +1,9 @@
-$("#subject_count_homework_<%=@homework.id %>").html(<%= @homework.quotes %>);
\ No newline at end of file
+$("#subject_count_homework_<%=@homework.id %>").html(<%= @homework.quotes %>);
+$("#ajax-modal").html("<%=escape_javascript(render :partial => 'homework_post_notice') %>");
+showModal('ajax-modal', '500px');
+$('#ajax-modal').siblings().remove();
+$('#ajax-modal').before("" +
+ "
");
+$('#ajax-modal').parent().css("top","50%").css("left","50%");
+$('#ajax-modal').parent().addClass("popbox").addClass("resourceUploadPopup");
+$('#ajax-modal').css("padding-left","16px").css("padding-bottom","16px");
\ No newline at end of file