diff --git a/app/views/layouts/base_courses.html.erb b/app/views/layouts/base_courses.html.erb
index a9e859448..c3f3a4a60 100644
--- a/app/views/layouts/base_courses.html.erb
+++ b/app/views/layouts/base_courses.html.erb
@@ -157,9 +157,9 @@
diff --git a/public/javascripts/course.js b/public/javascripts/course.js
index 7cfad6005..73ab065ea 100644
--- a/public/javascripts/course.js
+++ b/public/javascripts/course.js
@@ -475,6 +475,19 @@ function submitMemberSerch(content)
function show_more_msg()
{
$("#course_description").toggleClass("course_description_none");
+ var information = $("#expend_more_information");
+ var arrow = $("#arrow");
+ var val = information.attr("value");
+ if (val == "show_more") {
+ $("#expend_more_information").text("收起描述信息");
+ information.attr("value", "hide_more");
+ arrow.attr("src", "/images/jiantouup.jpg")
+ }
+ else {
+ $("#expend_more_information").text("展开更多信息");
+ information.attr("value", "show_more");
+ arrow.attr("src", "/images/jiantou.jpg")
+ }
}
//作业描述显示更多信息
function news_show_more_des(id)